Merge topic 'fix-warnings'

e1ea1df0 cmListFileCache: Fix warning about inconsistent use of class/struct
This commit is contained in:
Brad King 2016-02-12 09:03:52 -05:00 committed by CMake Topic Stage
commit 1c8dadd914
1 changed files with 2 additions and 1 deletions

View File

@ -58,8 +58,9 @@ struct cmListFileArgument
long Line;
};
struct cmListFileContext
class cmListFileContext
{
public:
std::string Name;
std::string FilePath;
long Line;