[Lldb-commits] [lldb] fd09d51 - [lldb] Add missing headers lldb/Host/Alarm.h

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 15 09:55:21 PDT 2024


Author: Jonas Devlieghere
Date: 2024-03-15T09:55:15-07:00
New Revision: fd09d510d066583c088e4dbcf23ac0b500c5cc7a

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

LOG: [lldb] Add missing headers lldb/Host/Alarm.h

Added: 
    

Modified: 
    lldb/include/lldb/Host/Alarm.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Host/Alarm.h b/lldb/include/lldb/Host/Alarm.h
index 7bdbc8f2b0ed74..23b1ff1af56890 100644
--- a/lldb/include/lldb/Host/Alarm.h
+++ b/lldb/include/lldb/Host/Alarm.h
@@ -13,6 +13,9 @@
 #include "lldb/lldb-types.h"
 #include "llvm/Support/Chrono.h"
 
+#include <condition_variable>
+#include <mutex>
+
 namespace lldb_private {
 
 /// \class Alarm abstraction that enables scheduling a callback function after a


        


More information about the lldb-commits mailing list