diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 18:34:28 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:29 (GMT) |
commit | 63453bf4ef6aea31f072c559dda656fbd845ab41 (patch) | |
tree | 3cc97cd3fa15a68d6cab9e774abef3c19f404383 /Source | |
parent | 1ed9974ce52f707cfc5ec7396bb0a9f4a0835632 (diff) | |
download | CMake-63453bf4ef6aea31f072c559dda656fbd845ab41.zip CMake-63453bf4ef6aea31f072c559dda656fbd845ab41.tar.gz CMake-63453bf4ef6aea31f072c559dda656fbd845ab41.tar.bz2 |
clang-tidy: fix `readability-avoid-const-params-in-decls` lints
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCallVisualStudioMacro.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCallVisualStudioMacro.h b/Source/cmCallVisualStudioMacro.h index 795b863..78f22ae 100644 --- a/Source/cmCallVisualStudioMacro.h +++ b/Source/cmCallVisualStudioMacro.h @@ -19,8 +19,7 @@ public: //! given solution file open. Pass "ALL" for slnFile to call the //! macro in each Visual Studio instance. static int CallMacro(const std::string& slnFile, const std::string& macro, - const std::string& args, - const bool logErrorsAsMessages); + const std::string& args, bool logErrorsAsMessages); //! Count the number of running instances of Visual Studio with the //! given solution file open. Pass "ALL" for slnFile to count all |