Skip to content

Commit

Permalink
properly init std::atomic
Browse files Browse the repository at this point in the history
  • Loading branch information
KerstinKeller authored Aug 19, 2024
1 parent fa1cde3 commit cdf2021
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ TEST(core_cpp_registration_2, GetTopicsParallel)
constexpr const int waiting_time_thread(4000);
constexpr const int parallel_threads(1);

std::atomic<bool> testing_completed = false;
std::atomic<bool> testing_completed{ false };

// initialize eCAL API
eCAL::Initialize(0, nullptr, "core_cpp_registration_2");
Expand Down

0 comments on commit cdf2021

Please sign in to comment.