mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
STYLE: some m_ to this-> cleanup
This commit is contained in:
@@ -50,21 +50,22 @@ struct cmListFileArgument
|
||||
|
||||
struct cmListFileFunction
|
||||
{
|
||||
std::string m_Name;
|
||||
std::vector<cmListFileArgument> m_Arguments;
|
||||
const char* m_FilePath;
|
||||
long m_Line;
|
||||
std::string Name;
|
||||
std::vector<cmListFileArgument> Arguments;
|
||||
const char* FilePath;
|
||||
long Line;
|
||||
};
|
||||
|
||||
struct cmListFile
|
||||
{
|
||||
cmListFile()
|
||||
:m_ModifiedTime(0)
|
||||
:ModifiedTime(0)
|
||||
{
|
||||
}
|
||||
bool ParseFile(const char* path, bool requireProjectCommand);
|
||||
long int m_ModifiedTime;
|
||||
std::vector<cmListFileFunction> m_Functions;
|
||||
|
||||
long int ModifiedTime;
|
||||
std::vector<cmListFileFunction> Functions;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user