aboutsummaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorNikita Popov <npopov@redhat.com>2024-06-21 14:04:39 +0200
committerNikita Popov <npopov@redhat.com>2024-06-21 14:05:36 +0200
commit9c4944095db919580bdc698273065d1c91a98ed8 (patch)
treeb930656b9b47b392f4d16982c04a780e106e1eef /lldb
parentb23fe1088fa47d2604cb6c671aeca6ea7fe01df8 (diff)
downloadllvm-9c4944095db919580bdc698273065d1c91a98ed8.zip
llvm-9c4944095db919580bdc698273065d1c91a98ed8.tar.gz
llvm-9c4944095db919580bdc698273065d1c91a98ed8.tar.bz2
[lldb] Add missing <stack> includes (NFC)
Diffstat (limited to 'lldb')
-rw-r--r--lldb/include/lldb/Target/TraceDumper.h1
-rw-r--r--lldb/source/Commands/CommandObjectThreadUtil.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/include/lldb/Target/TraceDumper.h b/lldb/include/lldb/Target/TraceDumper.h
index ca08dc2..d3cea4b 100644
--- a/lldb/include/lldb/Target/TraceDumper.h
+++ b/lldb/include/lldb/Target/TraceDumper.h
@@ -9,6 +9,7 @@
#include "lldb/Symbol/SymbolContext.h"
#include "lldb/Target/TraceCursor.h"
#include <optional>
+#include <stack>
#ifndef LLDB_TARGET_TRACE_INSTRUCTION_DUMPER_H
#define LLDB_TARGET_TRACE_INSTRUCTION_DUMPER_H
diff --git a/lldb/source/Commands/CommandObjectThreadUtil.h b/lldb/source/Commands/CommandObjectThreadUtil.h
index 74d1136..3fc28ef 100644
--- a/lldb/source/Commands/CommandObjectThreadUtil.h
+++ b/lldb/source/Commands/CommandObjectThreadUtil.h
@@ -10,6 +10,7 @@
#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTTHREADUTIL_H
#include "lldb/Interpreter/CommandObjectMultiword.h"
+#include <stack>
namespace lldb_private {