summaryrefslogtreecommitdiffstats
path: root/Source/cmPropertyDefinitionMap.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-09-17 13:08:58 (GMT)
committerBrad King <brad.king@kitware.com>2013-10-16 13:22:37 (GMT)
commit53ded5951537cd776ed5d1db7b2002bb580583be (patch)
tree93972bf253d7e977af3bd5a382247ba14bb0d53c /Source/cmPropertyDefinitionMap.cxx
parent0c39a757da4988467bfb870a8cba7339c72fe1a9 (diff)
downloadCMake-53ded5951537cd776ed5d1db7b2002bb580583be.zip
CMake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.gz
CMake-53ded5951537cd776ed5d1db7b2002bb580583be.tar.bz2
Drop unused builtin documentation APIs
Now that all DefineProperty documentation calls have been dropped, drop the supporting APIs.
Diffstat (limited to 'Source/cmPropertyDefinitionMap.cxx')
-rw-r--r--Source/cmPropertyDefinitionMap.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmPropertyDefinitionMap.cxx b/Source/cmPropertyDefinitionMap.cxx
index 22f8218..db29504 100644
--- a/Source/cmPropertyDefinitionMap.cxx
+++ b/Source/cmPropertyDefinitionMap.cxx
@@ -17,7 +17,6 @@ void cmPropertyDefinitionMap
::DefineProperty(const char *name, cmProperty::ScopeType scope,
const char *ShortDescription,
const char *FullDescription,
- const char *DocumentationSection,
bool chain)
{
if (!name)
@@ -31,7 +30,7 @@ void cmPropertyDefinitionMap
{
prop = &(*this)[name];
prop->DefineProperty(name,scope,ShortDescription, FullDescription,
- DocumentationSection, chain);
+ chain);
}
}