summaryrefslogtreecommitdiffstats
path: root/Source/cmState.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-06 07:41:15 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 07:29:30 (GMT)
commit7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0 (patch)
tree299fc93196e6df18e1340f50b094df8924b69ded /Source/cmState.cxx
parent9058e27a431b01319b18cc4099780fa017ada113 (diff)
downloadCMake-7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0.zip
CMake-7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0.tar.gz
CMake-7c0aa672fe4f1b5c4a15a89d90cd80009a1399d0.tar.bz2
cmPropertyMap: Remove scope parameter from API where not used.
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r--Source/cmState.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx
index 15a4638..7bfeda1 100644
--- a/Source/cmState.cxx
+++ b/Source/cmState.cxx
@@ -438,14 +438,13 @@ void cmState::RemoveUserDefinedCommands()
void cmState::SetGlobalProperty(const std::string& prop, const char* value)
{
- this->GlobalProperties.SetProperty(prop, value, cmProperty::GLOBAL);
+ this->GlobalProperties.SetProperty(prop, value);
}
void cmState::AppendGlobalProperty(const std::string& prop,
const char* value, bool asString)
{
- this->GlobalProperties.AppendProperty(prop, value,
- cmProperty::GLOBAL, asString);
+ this->GlobalProperties.AppendProperty(prop, value, asString);
}
const char *cmState::GetGlobalProperty(const std::string& prop)