diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 13:34:28 -0500 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 12:39:29 -0500 |
commit | 63453bf4ef6aea31f072c559dda656fbd845ab41 (patch) | |
tree | 3cc97cd3fa15a68d6cab9e774abef3c19f404383 /Source/cmCallVisualStudioMacro.h | |
parent | 1ed9974ce52f707cfc5ec7396bb0a9f4a0835632 (diff) | |
download | cmake-63453bf4ef6aea31f072c559dda656fbd845ab41.tar.gz |
clang-tidy: fix `readability-avoid-const-params-in-decls` lints
Diffstat (limited to 'Source/cmCallVisualStudioMacro.h')
-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 795b8631fe..78f22ae045 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 |