cmMakefile: Move internal method to private scope.
This commit is contained in:
parent
f58c3774d1
commit
9118b53b79
|
@ -65,8 +65,6 @@ class cmMakefile
|
||||||
class Internals;
|
class Internals;
|
||||||
cmsys::auto_ptr<Internals> Internal;
|
cmsys::auto_ptr<Internals> Internal;
|
||||||
public:
|
public:
|
||||||
/* Check for unused variables in this scope */
|
|
||||||
void CheckForUnusedVariables() const;
|
|
||||||
/* Mark a variable as used */
|
/* Mark a variable as used */
|
||||||
void MarkVariableAsUsed(const std::string& var);
|
void MarkVariableAsUsed(const std::string& var);
|
||||||
/* return true if a variable has been initialized */
|
/* return true if a variable has been initialized */
|
||||||
|
@ -1042,6 +1040,8 @@ private:
|
||||||
bool HaveCxxStandardAvailable(cmTarget const* target,
|
bool HaveCxxStandardAvailable(cmTarget const* target,
|
||||||
const std::string& feature) const;
|
const std::string& feature) const;
|
||||||
|
|
||||||
|
void CheckForUnusedVariables() const;
|
||||||
|
|
||||||
mutable bool SuppressWatches;
|
mutable bool SuppressWatches;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue