diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-03-25 18:00:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-03-25 18:46:52 (GMT) |
commit | a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e (patch) | |
tree | 91964f0266720537aae09ce0f42b8daa2107dba2 /Source/cmState.h | |
parent | ea54f8d44199502d6d02369ea0a2de4e9ef8c1ca (diff) | |
download | CMake-a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e.zip CMake-a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e.tar.gz CMake-a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e.tar.bz2 |
cmState::GetCacheEntryProperty: return cmProp
Diffstat (limited to 'Source/cmState.h')
-rw-r--r-- | Source/cmState.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmState.h b/Source/cmState.h index 89400d6..9d1b3c7 100644 --- a/Source/cmState.h +++ b/Source/cmState.h @@ -105,8 +105,8 @@ public: void SetCacheEntryBoolProperty(std::string const& key, std::string const& propertyName, bool value); std::vector<std::string> GetCacheEntryPropertyList(std::string const& key); - const char* GetCacheEntryProperty(std::string const& key, - std::string const& propertyName); + cmProp GetCacheEntryProperty(std::string const& key, + std::string const& propertyName); bool GetCacheEntryPropertyAsBool(std::string const& key, std::string const& propertyName); void AppendCacheEntryProperty(std::string const& key, |