diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-01 18:23:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-06-04 13:06:09 (GMT) |
commit | 6e570f857acd3322640db72112f2dc37b69396cf (patch) | |
tree | f8afeb7539aa6f1326f61f5f18ba43d419b4a18e /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 3d8c6cd9648089c389c1496fb910d664a5773ab4 (diff) | |
download | CMake-6e570f857acd3322640db72112f2dc37b69396cf.zip CMake-6e570f857acd3322640db72112f2dc37b69396cf.tar.gz CMake-6e570f857acd3322640db72112f2dc37b69396cf.tar.bz2 |
cmLocalGenerator: Remove 'optional' parameter from Convert.
Port callers away from it.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 5dfdb14..527524e 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -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) |