We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac3828 commit 6c2d2a8Copy full SHA for 6c2d2a8
include/kafka/Project.h
@@ -12,8 +12,11 @@
12
13
#if defined(WIN32) && !defined(NOMINMAX)
14
#define NOMINMAX
15
+#endif
16
-#define COMPILER_SUPPORTS_CPP_17 ((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L))
17
-
+#if ((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L))
18
+#define COMPILER_SUPPORTS_CPP_17 1
19
+#else
20
+#define COMPILER_SUPPORTS_CPP_17 0
21
#endif
22
0 commit comments