From 1aa755ce772a311a1c5280578d6303be8d088203 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 13 May 2015 19:44:44 +0000 Subject: Remove DoAttachToProcessWithId(lldb::pid_t). There were two versions of DoAttachToprocessWithId. One that takes a pid_t, and the other which takes a pid_t and a ProcessAttachInfo. There were no callers of the former version, and all of the implementations of this version were simply forwarding calls to one version or the other. llvm-svn: 237281 --- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp') diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 01c48d75822..1526b0911a1 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1300,13 +1300,6 @@ ProcessGDBRemote::DidLaunch () DidLaunchOrAttach (process_arch); } -Error -ProcessGDBRemote::DoAttachToProcessWithID (lldb::pid_t attach_pid) -{ - ProcessAttachInfo attach_info; - return DoAttachToProcessWithID(attach_pid, attach_info); -} - Error ProcessGDBRemote::DoAttachToProcessWithID (lldb::pid_t attach_pid, const ProcessAttachInfo &attach_info) { -- cgit v1.2.3