Files
swift-mirror/stdlib/public/Cxx/libstdcxx/libstdcxx.h
2024-08-05 09:06:39 -06:00

10 lines
315 B
C

#include "cstddef"
// C++17 and newer:
// <execution> includes tbb headers, which might not be installed.
// Only include <execution> if tbb is installed.
#if __has_include("execution") && __has_include(<tbb/blocked_range.h>) && (!defined(_GLIBCXX_RELEASE) || (_GLIBCXX_RELEASE < 11))
#include "execution"
#endif