summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2018-08-24 17:58:19 (GMT)
committerBrad King <brad.king@kitware.com>2018-08-27 18:07:43 (GMT)
commitc8fd23ec6f33eef8cf11d81938c379590080bd19 (patch)
tree75a04f4a2a037ededbee0a92628c103af03fc816 /Source/cmGlobalGenerator.cxx
parent0897c3cf585853358ef7ec2bd180dbb2e3288b21 (diff)
downloadCMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.zip
CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.tar.gz
CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.tar.bz2
cmMakefile: return directories as const std::string&
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 4060269..bbebb90 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -64,8 +64,8 @@ bool cmTarget::StrictTargetComparison::operator()(cmTarget const* t1,
{
int nameResult = strcmp(t1->GetName().c_str(), t2->GetName().c_str());
if (nameResult == 0) {
- return strcmp(t1->GetMakefile()->GetCurrentBinaryDirectory(),
- t2->GetMakefile()->GetCurrentBinaryDirectory()) < 0;
+ return strcmp(t1->GetMakefile()->GetCurrentBinaryDirectory().c_str(),
+ t2->GetMakefile()->GetCurrentBinaryDirectory().c_str()) < 0;
}
return nameResult < 0;
}