summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@users.noreply.gitlab.com>2023-03-01 00:44:42 (GMT)
committerVitaly Stakhovsky <vvs31415@users.noreply.gitlab.com>2023-03-01 00:44:42 (GMT)
commit87c4eba5cb7b8ca4f4e767b46ac513d8e2f80575 (patch)
tree3c74f1f1fc5b7b1e89ba3279daf1524c324a9dcf /Source
parent12d041b8f7718d9ec48fd3621ddc866a1d3c77cf (diff)
downloadCMake-87c4eba5cb7b8ca4f4e767b46ac513d8e2f80575.zip
CMake-87c4eba5cb7b8ca4f4e767b46ac513d8e2f80575.tar.gz
CMake-87c4eba5cb7b8ca4f4e767b46ac513d8e2f80575.tar.bz2
cmState::AddCacheEntry(): Remove unused overloads
Diffstat (limited to 'Source')
-rw-r--r--Source/cmState.h12
1 files changed, 0 insertions, 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);