From 9118b53b79afc1791d920b8ea6f9cedf26010148 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 17 May 2015 16:27:47 +0200 Subject: [PATCH] cmMakefile: Move internal method to private scope. --- Source/cmMakefile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index f96ca92f2..90544721d 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -65,8 +65,6 @@ class cmMakefile class Internals; cmsys::auto_ptr 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; };