mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 18:09:42 -05:00
cmOutputConverter: remove unused 'local' argument
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user