[Lldb-commits] [lldb] a0a1ff3 - Include <vector> in WatchpointResource.h
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 27 13:41:06 PST 2023
Author: Jason Molenda
Date: 2023-11-27T13:39:24-08:00
New Revision: a0a1ff3ab40e347589b4e27d8fd350c600526735
URL: https://github.com/llvm/llvm-project/commit/a0a1ff3ab40e347589b4e27d8fd350c600526735
DIFF: https://github.com/llvm/llvm-project/commit/a0a1ff3ab40e347589b4e27d8fd350c600526735.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.
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 e83ba0bbe8c65913..4b1d733850f1bbf5 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