This prevents Clang from warning about the use of the non-standard
__complex__ keyword.
libstdc++-v3/ChangeLog:
* include/std/complex: Add diagnostic pragma for clang.
// Get rid of a macro possibly defined in <complex.h>
#undef complex
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wc99-extensions"
+#endif
+
#if __cplusplus > 201703L
# define __cpp_lib_constexpr_complex 201711L
#endif
#endif // C++11
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif
+
#endif /* _GLIBCXX_COMPLEX */