aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/API/SBDebugger.cpp
diff options
context:
space:
mode:
authorAlex Langford <alangford@apple.com>2023-08-08 17:18:47 -0700
committerAlex Langford <alangford@apple.com>2023-08-09 17:17:18 -0700
commitf2d32ddcec82c20582c6aa32558b82ca7c3d3c50 (patch)
treefa89c74d7d223dc267a009c0597eae8bbe96508e /lldb/source/API/SBDebugger.cpp
parent20c77a5789331956cd47d1804df7885a82094964 (diff)
downloadllvm-f2d32ddcec82c20582c6aa32558b82ca7c3d3c50.zip
llvm-f2d32ddcec82c20582c6aa32558b82ca7c3d3c50.tar.gz
llvm-f2d32ddcec82c20582c6aa32558b82ca7c3d3c50.tar.bz2
[lldb] Sink StreamFile into lldbHost
StreamFile subclasses Stream (from lldbUtility) and is backed by a File (from lldbHost). It does not depend on anything from lldbCore or any of its sibling libraries, so I think it makes sense for this to live in lldbHost instead. Differential Revision: https://reviews.llvm.org/D157460
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r--lldb/source/API/SBDebugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp
index 9cf4646..b3f3659 100644
--- a/lldb/source/API/SBDebugger.cpp
+++ b/lldb/source/API/SBDebugger.cpp
@@ -39,10 +39,10 @@
#include "lldb/Core/DebuggerEvents.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Core/Progress.h"
-#include "lldb/Core/StreamFile.h"
#include "lldb/Core/StructuredDataImpl.h"
#include "lldb/DataFormatters/DataVisualization.h"
#include "lldb/Host/Config.h"
+#include "lldb/Host/StreamFile.h"
#include "lldb/Host/XML.h"
#include "lldb/Initialization/SystemLifetimeManager.h"
#include "lldb/Interpreter/CommandInterpreter.h"