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/cmServerProtocol.cxx | |
parent | ea54f8d44199502d6d02369ea0a2de4e9ef8c1ca (diff) | |
download | CMake-a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e.zip CMake-a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e.tar.gz CMake-a7f2ff16a48486ec0ef5a1a2d73e13cf4106a50e.tar.bz2 |
cmState::GetCacheEntryProperty: return cmProp
Diffstat (limited to 'Source/cmServerProtocol.cxx')
-rw-r--r-- | Source/cmServerProtocol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmServerProtocol.cxx b/Source/cmServerProtocol.cxx index 83a7f7b..c5f3463 100644 --- a/Source/cmServerProtocol.cxx +++ b/Source/cmServerProtocol.cxx @@ -450,7 +450,7 @@ cmServerResponse cmServerProtocol1::ProcessCache( bool haveProperties = false; for (auto const& prop : state->GetCacheEntryPropertyList(key)) { haveProperties = true; - props[prop] = state->GetCacheEntryProperty(key, prop); + props[prop] = *state->GetCacheEntryProperty(key, prop); } if (haveProperties) { entry[kPROPERTIES_KEY] = props; |