Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/doctest/patches/0001-ciso646-version.patch
9906 views
1
diff --git a/thirdparty/doctest/doctest.h b/thirdparty/doctest/doctest.h
2
index 52b4a4aa30..4a1e4a09d7 100644
3
--- a/thirdparty/doctest/doctest.h
4
+++ b/thirdparty/doctest/doctest.h
5
@@ -490,13 +490,17 @@ DOCTEST_GCC_SUPPRESS_WARNING_POP
6
#endif
7
#endif // DOCTEST_CONFIG_USE_IOSFWD
8
9
-// for clang - always include ciso646 (which drags some std stuff) because
10
-// we want to check if we are using libc++ with the _LIBCPP_VERSION macro in
11
+// for clang - always include <version> or <ciso646> (which drags some std stuff)
12
+// because we want to check if we are using libc++ with the _LIBCPP_VERSION macro in
13
// which case we don't want to forward declare stuff from std - for reference:
14
// https://github.com/doctest/doctest/issues/126
15
// https://github.com/doctest/doctest/issues/356
16
#if DOCTEST_CLANG
17
+#if DOCTEST_CPLUSPLUS >= 201703L && __has_include(<version>)
18
+#include <version>
19
+#else
20
#include <ciso646>
21
+#endif
22
#endif // clang
23
24
#ifdef _LIBCPP_VERSION
25
26