diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-26 20:18:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-09-27 10:08:07 (GMT) |
commit | 203eada65ea33f5739c99096d18619fbec0ec135 (patch) | |
tree | 5cfbc5ff3e09288e97597b369ad817d5cce3cef6 /Source/cmMakefile.h | |
parent | 5642449a69b7e8ed0a0fbaf1607ef34ebae239c6 (diff) | |
download | CMake-203eada65ea33f5739c99096d18619fbec0ec135.zip CMake-203eada65ea33f5739c99096d18619fbec0ec135.tar.gz CMake-203eada65ea33f5739c99096d18619fbec0ec135.tar.bz2 |
cmMakefile: Remove Configured state.
It is vestigial.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 3cf20a6..8724c6e 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -750,9 +750,6 @@ public: cmStringRange GetCompileDefinitionsEntries() const; cmBacktraceRange GetCompileDefinitionsBacktraces() const; - bool IsConfigured() const { return this->Configured; } - void SetConfigured(){ this->Configured = true; } - void AddQtUiFileWithOptions(cmSourceFile *sf); std::vector<cmSourceFile*> GetQtUiFilesWithOptions() const; @@ -988,7 +985,6 @@ private: bool WarnUnused; bool CheckSystemVars; bool CheckCMP0000; - bool Configured; bool IsSourceFileTryCompile; mutable bool SuppressWatches; }; |