[Lldb-commits] [lldb] 162e4b8 - Include <vector> in WatchpointResource.h

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 30 14:59:25 PST 2023


Author: Jason Molenda
Date: 2023-11-30T14:59:10-08:00
New Revision: 162e4b8c494459ea7509f598d15addd6ffc3dc9c

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

LOG: Include <vector> in WatchpointResource.h

On macOS <vector> was already included via another
header file, but this failed on the CI bots.  I'd
tested on linux earlier in this patch's life when
the headers were differently arranged.

(cherry picked from commit a0a1ff3ab40e347589b4e27d8fd350c600526735)

Added: 
    

Modified: 
    lldb/include/lldb/Breakpoint/WatchpointResource.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Breakpoint/WatchpointResource.h b/lldb/include/lldb/Breakpoint/WatchpointResource.h
index e83ba0bbe8c6591..4b1d733850f1bbf 100644
--- a/lldb/include/lldb/Breakpoint/WatchpointResource.h
+++ b/lldb/include/lldb/Breakpoint/WatchpointResource.h
@@ -13,7 +13,7 @@
 #include "lldb/lldb-public.h"
 
 #include <mutex>
-#include <set>
+#include <vector>
 
 namespace lldb_private {
 


        


More information about the lldb-commits mailing list