diff options
author | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-18 09:27:49 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-18 09:27:49 (GMT) |
commit | 7751966297e3b68b6c9904300f96bb57882af11a (patch) | |
tree | 54d87eba73fb853c5d66f5d68e2b36a5cea7d35d /Source/cmNinjaTargetGenerator.cxx | |
parent | c3988ee871c99e31ad4d10e9033d89da902d5694 (diff) | |
download | CMake-7751966297e3b68b6c9904300f96bb57882af11a.zip CMake-7751966297e3b68b6c9904300f96bb57882af11a.tar.gz CMake-7751966297e3b68b6c9904300f96bb57882af11a.tar.bz2 |
Ninja: remove 'friend' in ninja code
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index 36eb64d..ac2b468 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -91,7 +91,7 @@ cmGlobalNinjaGenerator* cmNinjaTargetGenerator::GetGlobalGenerator() const const char* cmNinjaTargetGenerator::GetConfigName() const { - return this->LocalGenerator->ConfigName.c_str(); + return this->LocalGenerator->GetConfigName(); } // TODO: Picked up from cmMakefileTargetGenerator. Refactor it. |