diff options
author | Tobias Hunger <tobias.hunger@gmail.com> | 2016-02-11 16:47:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-11 18:38:02 (GMT) |
commit | e1ea1df07ec6c5a5514cad2ca44bbef9bd41c587 (patch) | |
tree | 450bdae4ae4960cdb8c0914c82e6495c3f5b2fb6 /Source/cmListFileCache.h | |
parent | 7db269ddd1ffa2e673c33e508221811bf9ec55f1 (diff) | |
download | CMake-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/cmListFileCache.h')
-rw-r--r-- | Source/cmListFileCache.h | 3 |
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; |