summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-20 21:03:28 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-06-20 21:03:28 (GMT)
commit191fc3a0f373d262e2f2e5a2ccb07979e227d683 (patch)
tree2e9dbe7666d221c297b2346c2af298da2c3f4969 /Source/cmLocalGenerator.cxx
parentb86007e385fc0f4cc45149b68cafebad749bf6e8 (diff)
downloadCMake-191fc3a0f373d262e2f2e5a2ccb07979e227d683.zip
CMake-191fc3a0f373d262e2f2e5a2ccb07979e227d683.tar.gz
CMake-191fc3a0f373d262e2f2e5a2ccb07979e227d683.tar.bz2
cmOutputConverter: remove unused 'local' argument
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index e2e7aa1..0de9895 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -832,8 +832,8 @@ void cmLocalGenerator::InsertRuleLauncher(std::string& s,
std::string cmLocalGenerator::ConvertToIncludeReference(
std::string const& path, OutputFormat format, bool forceFullPaths)
{
- return this->ConvertToOutputForExisting(
- path, forceFullPaths ? FULL : START_OUTPUT, format);
+ static_cast<void>(forceFullPaths);
+ return this->ConvertToOutputForExisting(path, format);
}
std::string cmLocalGenerator::GetIncludeFlags(
@@ -1503,7 +1503,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::string& linkLibraries,
for (std::vector<std::string>::const_iterator libDir = libDirs.begin();
libDir != libDirs.end(); ++libDir) {
std::string libpath =
- this->ConvertToOutputForExisting(*libDir, START_OUTPUT, shellFormat);
+ this->ConvertToOutputForExisting(*libDir, shellFormat);
linkPath += " " + libPathFlag;
linkPath += libpath;
linkPath += libPathTerminator;