diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-08-25 16:35:40 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-01 17:08:14 (GMT) |
commit | d7999e9b294f93f68b5ec9e3efd8017fad3f05d9 (patch) | |
tree | d705db14b00d2b6a22a8335aff2511ed95764489 /Source/cmake.h | |
parent | e141bc950a1970c6bc96fa5f55fd60c6aedbb2d0 (diff) | |
download | CMake-d7999e9b294f93f68b5ec9e3efd8017fad3f05d9.zip CMake-d7999e9b294f93f68b5ec9e3efd8017fad3f05d9.tar.gz CMake-d7999e9b294f93f68b5ec9e3efd8017fad3f05d9.tar.bz2 |
Rename strict-mode to warn-uninitialized
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 7b612ea..3a53d48 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -306,8 +306,8 @@ class cmake // Do we want trace output during the cmake run. bool GetTrace() { return this->Trace;} void SetTrace(bool b) { this->Trace = b;} - bool GetStrictMode() { return this->StrictMode;} - void SetStrictMode(bool b) { this->StrictMode = b;} + bool GetWarnUninitialized() { return this->WarnUninitialized;} + void SetWarnUninitialized(bool b) { this->WarnUninitialized = b;} bool GetFindUnused() { return this->FindUnused;} void SetFindUnused(bool b) { this->FindUnused = b;} bool GetDefaultToUsed() { return this->DefaultToUsed;} @@ -449,7 +449,7 @@ private: bool ScriptMode; bool DebugOutput; bool Trace; - bool StrictMode; + bool WarnUninitialized; bool FindUnused; bool DefaultToUsed; std::string CMakeEditCommand; |