Skip to content

Commit a743780

Browse files
committed
Exclude clang, further closes #158 :)
1 parent ba785f9 commit a743780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/cpp2util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
#include <algorithm>
134134
// GCC sometime after version 10 got a dependency on linking TBB if <execution> is
135135
// included, so let's not pull in that header in our "import std;" simulation mode
136-
#if not defined(__GNUC__) || __GNUC__ < 11
136+
#if defined(__clang__) || not defined(__GNUC__) || __GNUC__ < 11
137137
#include <execution>
138138
#endif
139139
#include <bit>

0 commit comments

Comments
 (0)