STYLE: some m_ to this-> cleanup

This commit is contained in:
Ken Martin
2006-03-15 11:02:08 -05:00
parent 609af5c969
commit 3d96e52261
197 changed files with 3775 additions and 3735 deletions
+8 -7
View File
@@ -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