diff options
author | Pavel Labath <labath@google.com> | 2016-09-23 09:11:49 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-09-23 09:11:49 +0000 |
commit | 0f8f0d369d719cf3cb785e294463722f94d05cc0 (patch) | |
tree | a0bc0f4b0b5500b9f07189d4e6131232a6975cb0 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h | |
parent | a77bcf5e42e3a31508f8a261935d14dc35353ed8 (diff) | |
download | bcm5719-llvm-0f8f0d369d719cf3cb785e294463722f94d05cc0.tar.gz bcm5719-llvm-0f8f0d369d719cf3cb785e294463722f94d05cc0.zip |
[gdb-remote] Remove the const char * version of SendPacketAndWaitForResponse
Switch all callers to use the StringRef version.
llvm-svn: 282236
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h index 15d7ec2df2d..2646405c9b9 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h @@ -44,13 +44,6 @@ public: ContinueDelegate &delegate, const UnixSignals &signals, llvm::StringRef payload, StringExtractorGDBRemote &response); - PacketResult SendPacketAndWaitForResponse(const char *payload, size_t len, - StringExtractorGDBRemote &response, - bool send_async) { - return SendPacketAndWaitForResponse(llvm::StringRef(payload, len), response, - send_async); - } - PacketResult SendPacketAndWaitForResponse(llvm::StringRef payload, StringExtractorGDBRemote &response, bool send_async); |