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 513976d commit 8079f8aCopy full SHA for 8079f8a
libcxx/include/__config
@@ -1106,12 +1106,8 @@ _LIBCPP_FUNC_VIS extern "C" void __sanitizer_annotate_contiguous_container(
1106
1107
// Try to find out if RTTI is disabled.
1108
// g++ and cl.exe have RTTI on by default and define a macro when it is.
1109
-// g++ only defines the macro in 4.3.2 and onwards.
1110
#if !defined(_LIBCPP_NO_RTTI)
1111
-# if defined(__GNUC__) && \
1112
- ((__GNUC__ >= 5) || \
1113
- (__GNUC__ == 4 && (__GNUC_MINOR__ >= 3 || __GNUC_PATCHLEVEL__ >= 2))) && \
1114
- !defined(__GXX_RTTI)
+# if defined(__GNUC__) && !defined(__GXX_RTTI)
1115
# define _LIBCPP_NO_RTTI
1116
# elif defined(_LIBCPP_COMPILER_MSVC) && !defined(_CPPRTTI)
1117
0 commit comments