diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-17 14:27:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-19 20:36:52 (GMT) |
commit | 9118b53b79afc1791d920b8ea6f9cedf26010148 (patch) | |
tree | a274df69b8e42335241d46b8df2e3aa2e8b52788 /Source | |
parent | f58c3774d15f16ea287ca52fcbd04c17f0a5612d (diff) | |
download | CMake-9118b53b79afc1791d920b8ea6f9cedf26010148.zip CMake-9118b53b79afc1791d920b8ea6f9cedf26010148.tar.gz CMake-9118b53b79afc1791d920b8ea6f9cedf26010148.tar.bz2 |
cmMakefile: Move internal method to private scope.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index f96ca92..9054472 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -65,8 +65,6 @@ class cmMakefile class Internals; cmsys::auto_ptr<Internals> Internal; public: - /* Check for unused variables in this scope */ - void CheckForUnusedVariables() const; /* Mark a variable as used */ void MarkVariableAsUsed(const std::string& var); /* return true if a variable has been initialized */ @@ -1042,6 +1040,8 @@ private: bool HaveCxxStandardAvailable(cmTarget const* target, const std::string& feature) const; + void CheckForUnusedVariables() const; + mutable bool SuppressWatches; }; |