Skip to content

Commit

Permalink
Trying to solve gcc compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold committed Jul 3, 2023
1 parent 7b63c58 commit 309c32c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2456,7 +2456,7 @@ TEST(BlockingCall, Stopped) // TODO: This test shows the proper way to stop ever
constexpr int num_calls = 5;

std::vector<std::unique_ptr<std::thread>> call_threads;
std::atomic<int> callbacks_completed = 0;
std::atomic<int> callbacks_completed(0);

for (int i = 0; i < num_calls; i++)
{
Expand Down

0 comments on commit 309c32c

Please sign in to comment.