diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-06-20 21:03:28 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-06-20 21:03:28 (GMT) |
commit | 191fc3a0f373d262e2f2e5a2ccb07979e227d683 (patch) | |
tree | 2e9dbe7666d221c297b2346c2af298da2c3f4969 /Source/cmOutputConverter.cxx | |
parent | b86007e385fc0f4cc45149b68cafebad749bf6e8 (diff) | |
download | CMake-191fc3a0f373d262e2f2e5a2ccb07979e227d683.zip CMake-191fc3a0f373d262e2f2e5a2ccb07979e227d683.tar.gz CMake-191fc3a0f373d262e2f2e5a2ccb07979e227d683.tar.bz2 |
cmOutputConverter: remove unused 'local' argument
Diffstat (limited to 'Source/cmOutputConverter.cxx')
-rw-r--r-- | Source/cmOutputConverter.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/cmOutputConverter.cxx b/Source/cmOutputConverter.cxx index 8f1e3af..e66158e 100644 --- a/Source/cmOutputConverter.cxx +++ b/Source/cmOutputConverter.cxx @@ -47,10 +47,8 @@ std::string cmOutputConverter::ConvertToOutputForExistingCommon( } std::string cmOutputConverter::ConvertToOutputForExisting( - const std::string& remote, RelativeRoot local, OutputFormat format) const + const std::string& remote, OutputFormat format) const { - static_cast<void>(local); - // Perform standard conversion. std::string result = this->ConvertToOutputFormat(remote, format); @@ -59,10 +57,8 @@ std::string cmOutputConverter::ConvertToOutputForExisting( } std::string cmOutputConverter::ConvertToOutputForExisting( - RelativeRoot remote, const std::string& local, OutputFormat format) const + RelativeRoot remote, OutputFormat format) const { - static_cast<void>(local); - // The relative root must have a path (i.e. not FULL or NONE) assert(remote != FULL); assert(remote != NONE); |