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 c72155d commit f01a33eCopy full SHA for f01a33e
include/CLI/Macros.hpp
@@ -125,16 +125,16 @@
125
/** rtti enabled */
126
#ifndef CLI11_HAS_RTTI
127
#if defined(__GXX_RTTI) && __GXX_RTTI == 1
128
-//gcc
+// gcc
129
#define CLI11_HAS_RTTI 1
130
#elif defined(_CPPRTTI) && _CPPRTTI == 1
131
-//msvc
+// msvc
132
133
#elif defined(__NO_RTTI__) && __NO_RTTI__ == 1
134
-//intel
+// intel
135
#define CLI11_HAS_RTTI 0
136
#elif defined(__has_feature)
137
-//clang and other newer compilers
+// clang and other newer compilers
138
#if __has_feature(cxx_rtti)
139
140
#else
0 commit comments