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/Target/StackFrameList.cpp | |
| parent | 20c77a5789331956cd47d1804df7885a82094964 (diff) | |
[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/Target/StackFrameList.cpp')
| -rw-r--r-- | lldb/source/Target/StackFrameList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp index 2841f512439a..88cc518d0ea0 100644 --- a/lldb/source/Target/StackFrameList.cpp +++ b/lldb/source/Target/StackFrameList.cpp @@ -11,7 +11,7 @@ #include "lldb/Breakpoint/BreakpointLocation.h" #include "lldb/Core/Debugger.h" #include "lldb/Core/SourceManager.h" -#include "lldb/Core/StreamFile.h" +#include "lldb/Host/StreamFile.h" #include "lldb/Symbol/Block.h" #include "lldb/Symbol/Function.h" #include "lldb/Symbol/Symbol.h" |
