diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-21 18:02:16 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-21 18:10:51 (GMT) |
commit | a1858136c28326212d15cfd0a4412281f46b9cb0 (patch) | |
tree | 89dddc711067bdd9a84a99eb0d73a35bf2ca6dc9 /Source/cmMakefile.h | |
parent | ad47e6e5bc4822dc5bc9d82ae1d7590aee4ece95 (diff) | |
download | CMake-a1858136c28326212d15cfd0a4412281f46b9cb0.zip CMake-a1858136c28326212d15cfd0a4412281f46b9cb0.tar.gz CMake-a1858136c28326212d15cfd0a4412281f46b9cb0.tar.bz2 |
cmMakefile: Rename parameter.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 8ea6e13..24b4bd0 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -79,11 +79,11 @@ public: */ ~cmMakefile(); - bool ReadListFile(const char* listfile); + bool ReadListFile(const char* filename); - bool ReadDependentFile(const char* listfile, bool noPolicyScope = true); + bool ReadDependentFile(const char* filename, bool noPolicyScope = true); - bool ProcessBuildsystemFile(const char* listfile); + bool ProcessBuildsystemFile(const char* filename); /** * Add a function blocker to this makefile @@ -914,7 +914,7 @@ private: cmState::Snapshot StateSnapshot; - bool ReadListFile(const char* listfile, + bool ReadListFile(const char* filename, bool requireProjectCommand); bool ParseDefineFlag(std::string const& definition, bool remove); |