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 8da4996 commit 68a1953Copy full SHA for 68a1953
1 file changed
libs/core/algorithms/tests/performance/CMakeLists.txt
@@ -31,11 +31,11 @@ set(benchmarks
31
)
32
33
# foreach_report uses tag_invoke-based sender patterns that do not compile with
34
-# Clang <= 21 / AppleClang <= 17 against the current stdexec.
+# Clang < 22 / AppleClang < 18 against the current stdexec.
35
if((CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION
36
- VERSION_LESS_EQUAL "21")
+ VERSION_LESS "22")
37
OR (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang"
38
- AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS_EQUAL "17")
+ AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "18")
39
40
list(REMOVE_ITEM benchmarks foreach_report)
41
endif()
0 commit comments