summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-22 22:56:31 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-27 20:54:11 (GMT)
commit0554c2c970bf12dba01b408f3d8a103ede10a30b (patch)
treee52787c036e98395fbe2479ce5bfe1e0fd9bee23
parentb22e5d0ab71199b45f1f9f4e271f677dba602452 (diff)
downloadCMake-0554c2c970bf12dba01b408f3d8a103ede10a30b.zip
CMake-0554c2c970bf12dba01b408f3d8a103ede10a30b.tar.gz
CMake-0554c2c970bf12dba01b408f3d8a103ede10a30b.tar.bz2
cmTarget: Fix style
-rw-r--r--Source/cmTarget.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index e056469..a016e92 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -299,7 +299,8 @@ void cmTarget::AddUtility(const std::string& u, cmMakefile *makefile)
{
if(this->Utilities.insert(u).second && makefile)
{
- UtilityBacktraces.insert(std::make_pair(u, makefile->GetBacktrace()));
+ this->UtilityBacktraces.insert(
+ std::make_pair(u, makefile->GetBacktrace()));
}
}