diff options
Diffstat (limited to 'lldb/source/Core/Timer.cpp')
-rw-r--r-- | lldb/source/Core/Timer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Timer.cpp b/lldb/source/Core/Timer.cpp index ba0381fee42..e53ce2ec453 100644 --- a/lldb/source/Core/Timer.cpp +++ b/lldb/source/Core/Timer.cpp @@ -37,8 +37,8 @@ namespace }; } // end of anonymous namespace -std::atomic_bool Timer::g_quiet(true); -std::atomic_uint Timer::g_display_depth(0); +std::atomic<bool> Timer::g_quiet(true); +std::atomic<unsigned> Timer::g_display_depth(0); std::mutex Timer::g_file_mutex; FILE* Timer::g_file = nullptr; |