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.
2 parents 3459000 + 6efd4c1 commit cdfb181Copy full SHA for cdfb181
stdlib/public/Cxx/libstdcxx.h
@@ -50,11 +50,30 @@
50
#include <type_traits>
51
#include <unordered_map>
52
#include <unordered_set>
53
+
54
+// C++17 and newer:
55
56
+#if __has_include(<any>)
57
#include <any>
58
+#endif
59
+#if __has_include(<charconv>)
60
#include <charconv>
61
62
+#if __has_include(<execution>)
63
#include <execution>
64
65
+#if __has_include(<filesystem>)
66
#include <filesystem>
67
68
+#if __has_include(<memory_resource>)
69
#include <memory_resource>
70
71
+#if __has_include(<optional>)
72
#include <optional>
73
74
+#if __has_include(<string_view>)
75
#include <string_view>
76
77
+#if __has_include(<variant>)
78
#include <variant>
79
0 commit comments