summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-25 20:19:57 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-25 20:19:57 (GMT)
commit6254ba95784ae29616b17ad8b42d4f31560c2c65 (patch)
treed07bd50529bb973703bec4a3c427c2a3b2ef4dc2 /Source/cmMakefile.h
parentcf0a78dc4ce7debb62ceb4d12235ea75e19bebe2 (diff)
downloadCMake-6254ba95784ae29616b17ad8b42d4f31560c2c65.zip
CMake-6254ba95784ae29616b17ad8b42d4f31560c2c65.tar.gz
CMake-6254ba95784ae29616b17ad8b42d4f31560c2c65.tar.bz2
cmMakefile: Remove Internal class.
Move only remaining state to the direct class.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 055170a..1f8a054 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -62,8 +62,6 @@ class cmGeneratorExpressionEvaluationFile;
*/
class cmMakefile
{
- class Internals;
- cmsys::auto_ptr<Internals> Internal;
public:
/* Mark a variable as used */
void MarkVariableAsUsed(const std::string& var);
@@ -996,6 +994,7 @@ private:
bool CheckSystemVars;
bool CheckCMP0000;
bool Configured;
+ bool IsSourceFileTryCompile;
mutable bool SuppressWatches;
};