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/cmFileCommand.cxx | |
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/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 9815d9d..b06eedb 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -334,7 +334,7 @@ bool HandleStringsCommand(std::vector<std::string> const& args, arg_limit_count, arg_length_minimum, arg_length_maximum, - arg__maximum, + arg_maximum, arg_regex, arg_encoding }; |