aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-07-13 13:44:01 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2020-07-13 13:44:51 -0700
commit32d35fb74b2672ddf3674188423b71837afea8c4 (patch)
tree7b52872a48416ce6ebaf734580a21724ad87d25d /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
parent0d988da6d13e16a397d58bc3b965a36adb7fee03 (diff)
downloadllvm-32d35fb74b2672ddf3674188423b71837afea8c4.zip
llvm-32d35fb74b2672ddf3674188423b71837afea8c4.tar.gz
llvm-32d35fb74b2672ddf3674188423b71837afea8c4.tar.bz2
[lldb] Remove unused argument (NFC)
Nobody is writing to the stream so there's no point in passing it around.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index ff263fa..1fed8e0 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -629,8 +629,7 @@ Status ProcessGDBRemote::WillAttachToProcessWithName(const char *process_name,
return WillLaunchOrAttach();
}
-Status ProcessGDBRemote::DoConnectRemote(Stream *strm,
- llvm::StringRef remote_url) {
+Status ProcessGDBRemote::DoConnectRemote(llvm::StringRef remote_url) {
Log *log(ProcessGDBRemoteLog::GetLogIfAllCategoriesSet(GDBR_LOG_PROCESS));
Status error(WillLaunchOrAttach());