cmLocalGenerator: Remove 'optional' parameter from Convert.

Port callers away from it.
This commit is contained in:
Stephen Kelly
2015-06-01 20:23:11 +02:00
committed by Brad King
parent 3d8c6cd964
commit 6e570f857a
8 changed files with 47 additions and 66 deletions
+1 -4
View File
@@ -923,10 +923,7 @@ cmVisualStudio10TargetGenerator::ConvertPath(std::string const& path,
return forceRelative
? cmSystemTools::RelativePath(
this->Makefile->GetCurrentBinaryDirectory(), path.c_str())
: this->LocalGenerator->Convert(path.c_str(),
cmLocalGenerator::START_OUTPUT,
cmLocalGenerator::UNCHANGED,
/* optional = */ true);
: path.c_str();
}
void cmVisualStudio10TargetGenerator::ConvertToWindowsSlash(std::string& s)