diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-05-01 02:00:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-04-30 14:45:45 (GMT) |
commit | e267c3fddf68dc27a0e756a5d7f5dc618bf3f7eb (patch) | |
tree | 51253a7d8399e05e48a618aeafd805a985cbb411 /Source/cmState.cxx | |
parent | c09efe074d793203ab846e97bde8d03e4714dc2a (diff) | |
download | CMake-e267c3fddf68dc27a0e756a5d7f5dc618bf3f7eb.zip CMake-e267c3fddf68dc27a0e756a5d7f5dc618bf3f7eb.tar.gz CMake-e267c3fddf68dc27a0e756a5d7f5dc618bf3f7eb.tar.bz2 |
cmState::GetInitializedCacheValue: return cmProp
cmProp alias is used; no actual change in type
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index 2e748d3..df013f4 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -155,8 +155,7 @@ std::string cmState::GetSafeCacheEntryValue(std::string const& key) const return std::string(); } -const std::string* cmState::GetInitializedCacheValue( - std::string const& key) const +cmProp cmState::GetInitializedCacheValue(std::string const& key) const { return this->CacheManager->GetInitializedCacheValue(key); } |