diff options
author | Brad King <brad.king@kitware.com> | 2019-01-31 07:15:35 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-31 07:15:55 -0500 |
commit | ea9a376085b22a6e19bb4c6334e186052db51f16 (patch) | |
tree | aa734587acc59e8ffac4547b472ab30845f11901 /Source/cmake.h | |
parent | 748d024551d8f447046363ad617fc72bdd977fd2 (diff) | |
download | cmake-ea9a376085b22a6e19bb4c6334e186052db51f16.tar.gz |
Remove unused 'class cmake' members
* The `InTryCompile` member has been unused since commit 62854e9966
(cmState: Move try_compile state from cmake class., 2015-04-11,
v3.3.0-rc1~196^2~9).
* The `ConvertMessageType` and `IsMessageTypeVisible` members have been
unused since commit 421012a330 (cmMessenger: Extract from cmake class,
2016-01-28, v3.7.0-rc1~222^2~1).
* The `InitializeProperties` member has been unused since commit
de722d7d63 (Move property initialization to cmState., 2015-04-06,
v3.3.0-rc1~196^2~1).
Co-Author: Vitaly Stakhovsky <vvs31415@gitlab.org>
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index afd41175a9..dd7ce423c4 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -443,7 +443,6 @@ public: protected: void RunCheckForUnusedVariables(); - void InitializeProperties(); int HandleDeleteCacheVariables(const std::string& var); typedef std::vector<cmGlobalGeneratorFactory*> RegisteredGeneratorsVector; @@ -486,7 +485,6 @@ protected: private: ProgressCallbackType ProgressCallback; - bool InTryCompile; WorkingMode CurrentWorkingMode; bool DebugOutput; bool Trace; @@ -534,18 +532,6 @@ private: void AppendGlobalGeneratorsDocumentation(std::vector<cmDocumentationEntry>&); void AppendExtraGeneratorsDocumentation(std::vector<cmDocumentationEntry>&); - - /** - * Convert a message type between a warning and an error, based on the state - * of the error output CMake variables, in the cache. - */ - MessageType ConvertMessageType(MessageType t) const; - - /* - * Check if messages of this type should be output, based on the state of the - * warning and error output CMake variables, in the cache. - */ - bool IsMessageTypeVisible(MessageType t) const; }; #define CMAKE_STANDARD_OPTIONS_TABLE \ |