From 87c4eba5cb7b8ca4f4e767b46ac513d8e2f80575 Mon Sep 17 00:00:00 2001 From: Vitaly Stakhovsky Date: Tue, 28 Feb 2023 19:44:42 -0500 Subject: cmState::AddCacheEntry(): Remove unused overloads --- Source/cmState.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Source/cmState.h b/Source/cmState.h index 9a17b22..0a42df0 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -253,18 +253,6 @@ public: private: friend class cmake; - void AddCacheEntry(const std::string& key, const char* value, - const char* helpString, cmStateEnums::CacheEntryType type) - { - this->AddCacheEntry(key, - value ? cmValue(std::string(value)) : cmValue(nullptr), - helpString, type); - } - void AddCacheEntry(const std::string& key, const std::string& value, - const char* helpString, cmStateEnums::CacheEntryType type) - { - this->AddCacheEntry(key, cmValue(value), helpString, type); - } void AddCacheEntry(const std::string& key, cmValue value, const char* helpString, cmStateEnums::CacheEntryType type); -- cgit v0.12