summaryrefslogtreecommitdiff
path: root/Source/cmVersion.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-01-22 10:33:22 -0500
committerBen Boeckel <ben.boeckel@kitware.com>2021-01-27 08:45:44 -0500
commitc826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce (patch)
treefd692d5b557cea163005598b0c541b79a1c57069 /Source/cmVersion.h
parent675d81be6c728d21b78314f763ba060855b1366b (diff)
downloadcmake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.tar.gz
clang-tidy: fix `bugprone-reserved-identifier` warnings
Diffstat (limited to 'Source/cmVersion.h')
-rw-r--r--Source/cmVersion.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmVersion.h b/Source/cmVersion.h
index 9072c9fb56..456428c5bd 100644
--- a/Source/cmVersion.h
+++ b/Source/cmVersion.h
@@ -24,8 +24,8 @@ public:
/* Encode with room for up to 1000 minor releases between major releases
and to encode dates until the year 10000 in the patch level. */
-#define CMake_VERSION_ENCODE__BASE KWIML_INT_UINT64_C(100000000)
+#define CMake_VERSION_ENCODE_BASE KWIML_INT_UINT64_C(100000000)
#define CMake_VERSION_ENCODE(major, minor, patch) \
- ((((major)*1000u) * CMake_VERSION_ENCODE__BASE) + \
- (((minor) % 1000u) * CMake_VERSION_ENCODE__BASE) + \
- (((patch) % CMake_VERSION_ENCODE__BASE)))
+ ((((major)*1000u) * CMake_VERSION_ENCODE_BASE) + \
+ (((minor) % 1000u) * CMake_VERSION_ENCODE_BASE) + \
+ (((patch) % CMake_VERSION_ENCODE_BASE)))