cmMakefile: Move internal method to private scope.

This commit is contained in:
Stephen Kelly 2015-05-17 16:27:47 +02:00
parent f58c3774d1
commit 9118b53b79
1 changed files with 2 additions and 2 deletions

View File

@ -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;
};