diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 19:16:11 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:45 (GMT) |
commit | 27f5ce07cc4093e5e46e931df633ba9fc74238d6 (patch) | |
tree | 34d609dbe8d10ab7c04aaf29553638cfeda92b49 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 9e81a9b45c0d084b7694065fa7f5c8e79f8161b6 (diff) | |
download | CMake-27f5ce07cc4093e5e46e931df633ba9fc74238d6.zip CMake-27f5ce07cc4093e5e46e931df633ba9fc74238d6.tar.gz CMake-27f5ce07cc4093e5e46e931df633ba9fc74238d6.tar.bz2 |
clang-tidy: fix `performance-unnecessary-value-param` lints
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index acff990..28e8854 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -953,7 +953,7 @@ void cmLocalVisualStudio7Generator::WriteConfiguration( } std::string cmLocalVisualStudio7Generator::GetBuildTypeLinkerFlags( - std::string rootLinkerFlags, const std::string& configName) + std::string const& rootLinkerFlags, const std::string& configName) { std::string configTypeUpper = cmSystemTools::UpperCase(configName); std::string extraLinkOptionsBuildTypeDef = |