diff options
author | Brad King <brad.king@kitware.com> | 2016-02-12 14:03:52 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-02-12 14:03:52 (GMT) |
commit | 1c8dadd914518e5185c73a4f5edba6167ced8b07 (patch) | |
tree | 3475c1a232fdea68a9263cb3b367d9a09e00866f | |
parent | 3fd326695f32efe8dedc2c22b62437612ba59616 (diff) | |
parent | e1ea1df07ec6c5a5514cad2ca44bbef9bd41c587 (diff) | |
download | CMake-1c8dadd914518e5185c73a4f5edba6167ced8b07.zip CMake-1c8dadd914518e5185c73a4f5edba6167ced8b07.tar.gz CMake-1c8dadd914518e5185c73a4f5edba6167ced8b07.tar.bz2 |
Merge topic 'fix-warnings'
e1ea1df0 cmListFileCache: Fix warning about inconsistent use of class/struct
-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; |