aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.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/Plugins/Process/gdb-remote/GDBRemoteCommunication.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/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
index 7daf003..8a47eed 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
@@ -13,7 +13,6 @@
#include <future>
#include <sys/stat.h>
-#include "lldb/Core/StreamFile.h"
#include "lldb/Host/Config.h"
#include "lldb/Host/ConnectionFileDescriptor.h"
#include "lldb/Host/FileSystem.h"