diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 19:13:07 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:45 (GMT) |
commit | 9e81a9b45c0d084b7694065fa7f5c8e79f8161b6 (patch) | |
tree | 2d5a00347406afdf1e6bf850018e64d629b375ce /Source/cmGlobalVisualStudio14Generator.cxx | |
parent | 4deab0a75c0da66938c230a446af5ecd6f3c5ca3 (diff) | |
download | CMake-9e81a9b45c0d084b7694065fa7f5c8e79f8161b6.zip CMake-9e81a9b45c0d084b7694065fa7f5c8e79f8161b6.tar.gz CMake-9e81a9b45c0d084b7694065fa7f5c8e79f8161b6.tar.bz2 |
clang-tidy: fix `misc-unused-parameters` lints
Diffstat (limited to 'Source/cmGlobalVisualStudio14Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio14Generator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio14Generator.cxx b/Source/cmGlobalVisualStudio14Generator.cxx index a26e60a..7424ca3 100644 --- a/Source/cmGlobalVisualStudio14Generator.cxx +++ b/Source/cmGlobalVisualStudio14Generator.cxx @@ -372,6 +372,7 @@ std::string cmGlobalVisualStudio14Generator::GetWindows10SDKVersion( return sdks.at(0); } #endif + (void)mf; // Return an empty string return std::string(); } |