[Lldb-commits] [lldb] bcb8a94 - [lldb][test] Fix vCont-threads/main.cp for -std=c++11

Fangrui Song via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 24 15:08:28 PST 2023


Author: Fangrui Song
Date: 2023-02-24T15:08:24-08:00
New Revision: bcb8a94503887250d3a818a6b631899e9233080c

URL: https://github.com/llvm/llvm-project/commit/bcb8a94503887250d3a818a6b631899e9233080c
DIFF: https://github.com/llvm/llvm-project/commit/bcb8a94503887250d3a818a6b631899e9233080c.diff

LOG: [lldb][test] Fix vCont-threads/main.cp for -std=c++11

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-server/vCont-threads/main.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/vCont-threads/main.cpp b/lldb/test/API/tools/lldb-server/vCont-threads/main.cpp
index ffc1489dfeb8..28890dc96732 100644
--- a/lldb/test/API/tools/lldb-server/vCont-threads/main.cpp
+++ b/lldb/test/API/tools/lldb-server/vCont-threads/main.cpp
@@ -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) {}


        


More information about the lldb-commits mailing list