diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-22 15:33:22 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-27 13:45:44 (GMT) |
commit | c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce (patch) | |
tree | fd692d5b557cea163005598b0c541b79a1c57069 /Source/cmOutputConverter.h | |
parent | 675d81be6c728d21b78314f763ba060855b1366b (diff) | |
download | CMake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.zip CMake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.tar.gz CMake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.tar.bz2 |
clang-tidy: fix `bugprone-reserved-identifier` warnings
Diffstat (limited to 'Source/cmOutputConverter.h')
-rw-r--r-- | Source/cmOutputConverter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmOutputConverter.h b/Source/cmOutputConverter.h index 655bc87..ac7e7a0 100644 --- a/Source/cmOutputConverter.h +++ b/Source/cmOutputConverter.h @@ -105,11 +105,11 @@ public: private: cmState* GetState() const; - static bool Shell__CharNeedsQuotes(char c, int flags); - static cm::string_view::iterator Shell__SkipMakeVariables( + static bool Shell_CharNeedsQuotes(char c, int flags); + static cm::string_view::iterator Shell_SkipMakeVariables( cm::string_view::iterator begin, cm::string_view::iterator end); - static bool Shell__ArgumentNeedsQuotes(cm::string_view in, int flags); - static std::string Shell__GetArgument(cm::string_view in, int flags); + static bool Shell_ArgumentNeedsQuotes(cm::string_view in, int flags); + static std::string Shell_GetArgument(cm::string_view in, int flags); private: cmStateSnapshot StateSnapshot; |