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 a743780 commit d00fea8Copy full SHA for d00fea8
include/cpp2util.h
@@ -131,9 +131,9 @@
131
#include <iterator>
132
#include <ranges>
133
#include <algorithm>
134
- // GCC sometime after version 10 got a dependency on linking TBB if <execution> is
+ // libstdc++ sometime after GCC 10 got a dependency on linking TBB if <execution> is
135
// included, so let's not pull in that header in our "import std;" simulation mode
136
- #if defined(__clang__) || not defined(__GNUC__) || __GNUC__ < 11
+ #if not defined(__GLIBCXX__) || __GLIBCXX__ < 20210101
137
#include <execution>
138
#endif
139
#include <bit>
0 commit comments