Skip to content

Commit 0e9451c

Browse files
committed
Remove unused line, fix CI
1 parent 3b6648b commit 0e9451c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ else()
151151
endif()
152152

153153
# Build relacy tests by default only for GNU compiler and if tests are enabled
154-
if(${STDEXEC_BUILD_TESTS} AND stdexec_compiler_frontend STREQUAL "GNU")
154+
# It will take work to get other platforms to work in the future.
155+
if(${STDEXEC_BUILD_TESTS} AND ${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
155156
set(STDEXEC_BUILD_RELACY_TESTS_DEFAULT ON)
156157
else()
157158
set(STDEXEC_BUILD_RELACY_TESTS_DEFAULT OFF)

test/rrd/intrusive_mpsc_queue.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,6 @@ struct mpsc_five_producers_ordered : rl::test_suite<mpsc_five_producers_ordered,
271271
queue.push_back(&nodes[start_idx + i]);
272272
}
273273
} else {
274-
// int count = 0;
275274
while (consumed_count < TOTAL_ITEMS) {
276275
test_node* node = queue.pop_front();
277276
if (node) {

0 commit comments

Comments
 (0)