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 4fdb63b commit ea3152bCopy full SHA for ea3152b
libcxx/test/support/msvc_stdlib_force_include.h
@@ -100,11 +100,11 @@ const AssertionDialogAvoider assertion_dialog_avoider{};
100
_Pragma("GCC diagnostic pop")
101
#else // ^^^ clang / MSVC vvv
102
#define _LIBCPP_SUPPRESS_DEPRECATED_PUSH \
103
- _Pragma("warning(push)") \
104
- _Pragma("warning(disable : 4996)") \
105
- _Pragma("warning(disable : 5215)")
+ __pragma(warning(push)) \
+ __pragma(warning(disable : 4996)) \
+ __pragma(warning(disable : 5215))
106
#define _LIBCPP_SUPPRESS_DEPRECATED_POP \
107
- _Pragma("warning(pop)")
+ __pragma(warning(pop))
108
#endif // __clang__
109
110
#endif // SUPPORT_MSVC_STDLIB_FORCE_INCLUDE_H
0 commit comments