summaryrefslogtreecommitdiff
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-11-19 11:48:55 +0100
committerStephen Kelly <steveire@gmail.com>2013-11-19 20:40:32 +0100
commit0794c1360d43a61e96d11a62f493972e3ed52d8c (patch)
tree7dbce2216a6f4dda08c2b0b91a2af00f9e443387 /Source/cmTarget.cxx
parent1c2752169c3d34b80fb331b4edcc31a6001d2974 (diff)
downloadcmake-0794c1360d43a61e96d11a62f493972e3ed52d8c.tar.gz
cmTarget: Make NameResolvesToFramework const.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index b0caf166b7..e063125a26 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -769,9 +769,9 @@ void cmTarget::ClearDependencyInformation( cmMakefile& mf,
}
//----------------------------------------------------------------------------
-bool cmTarget::NameResolvesToFramework(const std::string& libname)
+bool cmTarget::NameResolvesToFramework(const std::string& libname) const
{
- return this->GetMakefile()->GetLocalGenerator()->GetGlobalGenerator()->
+ return this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
NameResolvesToFramework(libname);
}