diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-05-06 17:33:13 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-05-06 17:33:13 +0000 |
commit | d97dd11f2f5e8b3bb02d6e45aa3dc8f115dc17a8 (patch) | |
tree | 2c72b69e6e268277ffc97e6443577ecc25a74894 | |
parent | 247731d4d38f83c1df6b30399246fddba72c5da3 (diff) | |
download | bcm5719-llvm-d97dd11f2f5e8b3bb02d6e45aa3dc8f115dc17a8.tar.gz bcm5719-llvm-d97dd11f2f5e8b3bb02d6e45aa3dc8f115dc17a8.zip |
debugserver; fix -Wunused-local-typedef, -Wunused-variable warnings
Remove the typedef and local structure which was unused. Fixes last of the new
clang warnings in the debugserver build. NFC.
llvm-svn: 268759
-rw-r--r-- | lldb/tools/debugserver/source/RNBRemote.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/tools/debugserver/source/RNBRemote.cpp b/lldb/tools/debugserver/source/RNBRemote.cpp index ade2513d65b..d51afbf80b0 100644 --- a/lldb/tools/debugserver/source/RNBRemote.cpp +++ b/lldb/tools/debugserver/source/RNBRemote.cpp @@ -3555,13 +3555,6 @@ RNBRemote::HandlePacket_v (const char *p) } else if (strstr (p, "vCont") == p) { - typedef struct - { - nub_thread_t tid; - char action; - int signal; - } vcont_action_t; - DNBThreadResumeActions thread_actions; char *c = (char *)(p += strlen("vCont")); char *c_end = c + strlen(c); |