[lldb][test] Fix vCont-threads/main.cp for -std=c++11
authorFangrui Song <i@maskray.me>
Fri, 24 Feb 2023 23:08:24 +0000 (15:08 -0800)
committerFangrui Song <i@maskray.me>
Fri, 24 Feb 2023 23:08:24 +0000 (15:08 -0800)
lldb/test/API/tools/lldb-server/vCont-threads/main.cpp

index ffc1489..28890dc 100644 (file)
@@ -14,7 +14,7 @@
 
 pseudo_barrier_t barrier;
 std::mutex print_mutex;
-std::atomic<bool> can_work = false;
+std::atomic<bool> can_work;
 thread_local volatile sig_atomic_t can_exit_now = false;
 
 static void sigint_handler(int signo) {}