summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-11-19 10:32:30 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-11-19 19:40:32 (GMT)
commit8841d738cc7be3f91e16d62e83c0cd7f2cb2f626 (patch)
tree4161b6de73c4282b5d93274888af66822fd04528 /Source/cmGlobalGenerator.cxx
parent36e31cd1279cc441ba61bd38e85562fb2eafc449 (diff)
downloadCMake-8841d738cc7be3f91e16d62e83c0cd7f2cb2f626.zip
CMake-8841d738cc7be3f91e16d62e83c0cd7f2cb2f626.tar.gz
CMake-8841d738cc7be3f91e16d62e83c0cd7f2cb2f626.tar.bz2
cmMakefile: Make IsAlias const.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index a160336..2f16e9c 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -1981,7 +1981,7 @@ void cmGlobalGenerator::AddAlias(const char *name, cmTarget *tgt)
}
//----------------------------------------------------------------------------
-bool cmGlobalGenerator::IsAlias(const char *name)
+bool cmGlobalGenerator::IsAlias(const char *name) const
{
return this->AliasTargets.find(name) != this->AliasTargets.end();
}