Skip to content

Commit

Permalink
Try to fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Jan 18, 2025
1 parent f1cb615 commit 1f5978c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ExtraTests/X37-Multithreading.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

TEST_CASE( "ThreadAssertionTest",
"[Multithreading]" ) {
std::atomic_bool should_stop = false;
SECTION( "Basic" ) {
std::atomic_bool should_stop{false};
std::thread a([&should_stop] () {
while (!should_stop) {
FAIL_CHECK(false);
Expand Down

0 comments on commit 1f5978c

Please sign in to comment.