github-actions[bot] commented on code in PR #19648:
URL: https://github.com/apache/doris/pull/19648#discussion_r1193514987
##########
be/src/gutil/atomicops.h:
##########
@@ -66,18 +66,19 @@
// #endif
// ------------------------------------------------------------------------
-#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 +
__GNUC_PATCHLEVEL__)
+#define GUTILS_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 +
__GNUC_PATCHLEVEL__)
Review Comment:
warning: macro is not used [clang-diagnostic-unused-macros]
```cpp
#define GUTILS_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 +
__GNUC_PATCHLEVEL__)
^
```
##########
be/src/gutil/atomicops.h:
##########
@@ -66,18 +66,19 @@
// #endif
// ------------------------------------------------------------------------
-#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 +
__GNUC_PATCHLEVEL__)
+#define GUTILS_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 +
__GNUC_PATCHLEVEL__)
-#define CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 +
__clang_patchlevel__)
+#define GUTILS_CLANG_VERSION \
Review Comment:
warning: macro is not used [clang-diagnostic-unused-macros]
```cpp
#define GUTILS_CLANG_VERSION \
^
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]