diff options
author | Alex Langford <alangford@apple.com> | 2023-08-08 17:18:47 -0700 |
---|---|---|
committer | Alex Langford <alangford@apple.com> | 2023-08-09 17:17:18 -0700 |
commit | f2d32ddcec82c20582c6aa32558b82ca7c3d3c50 (patch) | |
tree | fa89c74d7d223dc267a009c0597eae8bbe96508e /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 20c77a5789331956cd47d1804df7885a82094964 (diff) | |
download | llvm-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/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index f78fc72..1a8b691 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -46,7 +46,7 @@ #include "lldb/Core/Debugger.h" #include "lldb/Core/PluginManager.h" -#include "lldb/Core/StreamFile.h" +#include "lldb/Host/StreamFile.h" #include "lldb/Utility/LLDBLog.h" #include "lldb/Utility/Log.h" #include "lldb/Utility/State.h" |