summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@gmail.com>2016-02-11 16:47:42 (GMT)
committerBrad King <brad.king@kitware.com>2016-02-11 18:38:02 (GMT)
commite1ea1df07ec6c5a5514cad2ca44bbef9bd41c587 (patch)
tree450bdae4ae4960cdb8c0914c82e6495c3f5b2fb6 /Source
parent7db269ddd1ffa2e673c33e508221811bf9ec55f1 (diff)
downloadCMake-e1ea1df07ec6c5a5514cad2ca44bbef9bd41c587.zip
CMake-e1ea1df07ec6c5a5514cad2ca44bbef9bd41c587.tar.gz
CMake-e1ea1df07ec6c5a5514cad2ca44bbef9bd41c587.tar.bz2
cmListFileCache: Fix warning about inconsistent use of class/struct
Exposed by Clang trunk.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmListFileCache.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h
index 03e0abe..4d3055f 100644
--- a/Source/cmListFileCache.h
+++ b/Source/cmListFileCache.h
@@ -58,8 +58,9 @@ struct cmListFileArgument
long Line;
};
-struct cmListFileContext
+class cmListFileContext
{
+public:
std::string Name;
std::string FilePath;
long Line;