Skip to content

Commit

Permalink
Bugfix: Atomic initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwbrei committed Jun 25, 2024
1 parent f11f836 commit ff85762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/JANA/JApplicationFwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class JApplication {
bool m_extended_report = false;
int m_exit_code = (int) ExitCode::Success;
int m_desired_nthreads;
std::atomic_int m_sigint_count = 0;
std::atomic_int m_sigint_count {0};

std::mutex m_status_mutex;
int m_ticker_interval_ms = 1000;
Expand Down

0 comments on commit ff85762

Please sign in to comment.