diff options
author | Sean McBride <sean@rogue-research.com> | 2023-10-20 15:51:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-10-20 16:20:02 (GMT) |
commit | b373a229919faf5ab583472b94b2a5392d537221 (patch) | |
tree | a916392f518d052764fe2171501ea5008059ec2c /Source | |
parent | 3f49c0369d5339a316984c26b589ab52afe3878f (diff) | |
download | CMake-b373a229919faf5ab583472b94b2a5392d537221.zip CMake-b373a229919faf5ab583472b94b2a5392d537221.tar.gz CMake-b373a229919faf5ab583472b94b2a5392d537221.tar.bz2 |
Fix clang -Wreserved-identifier by renaming an enum
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CPack/cmCPackLog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackLog.h b/Source/CPack/cmCPackLog.h index 2ab2f8e..347b0f7 100644 --- a/Source/CPack/cmCPackLog.h +++ b/Source/CPack/cmCPackLog.h @@ -29,7 +29,7 @@ public: cmCPackLog(const cmCPackLog&) = delete; cmCPackLog& operator=(const cmCPackLog&) = delete; - enum __log_tags + enum cm_log_tags { NOTAG = 0, LOG_OUTPUT = 0x1, |