diff options
author | Brad King <brad.king@kitware.com> | 2013-09-17 13:02:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-09-17 13:10:31 (GMT) |
commit | bbfff5233d3c26a7049084dce330fc9b7983691f (patch) | |
tree | b8bbdb08268660c2b872991ef92faccc124cf91d /Source/cmake.cxx | |
parent | 4c4bafdeabe868677a868dba416878c097c416b3 (diff) | |
download | CMake-bbfff5233d3c26a7049084dce330fc9b7983691f.zip CMake-bbfff5233d3c26a7049084dce330fc9b7983691f.tar.gz CMake-bbfff5233d3c26a7049084dce330fc9b7983691f.tar.bz2 |
Remove redundant cmake::GetIsPropertyDefined method
We already have cmake::IsPropertyDefined for the same reason.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 290aff0..6bd398e 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -3640,13 +3640,6 @@ void cmake::DefineProperty(const char *name, cmProperty::ScopeType scope, chained); } -bool cmake::GetIsPropertyDefined(const char *name, - cmProperty::ScopeType scope) -{ - return this->PropertyDefinitions[scope].find(name) != - this->PropertyDefinitions[scope].end(); -} - cmPropertyDefinition *cmake ::GetPropertyDefinition(const char *name, cmProperty::ScopeType scope) |