diff options
author | Pavel Labath <labath@google.com> | 2017-11-03 22:12:50 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-11-03 22:12:50 +0000 |
commit | a964012cd2480e71bf1b6cff6ca1d32371ab9e16 (patch) | |
tree | 04998efdd0e81a7f14de95d601f3c27d93f711d2 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 068512dfb933b99f15a69880fb75d6832072eb2a (diff) | |
download | bcm5719-llvm-a964012cd2480e71bf1b6cff6ca1d32371ab9e16.tar.gz bcm5719-llvm-a964012cd2480e71bf1b6cff6ca1d32371ab9e16.zip |
Remove ProcessGdbRemote::m_flags
The member is completely unused. Discussed on lldb-dev.
llvm-svn: 317377
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 3 |
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 5b4c1c5747e..df3da20bcde 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -244,7 +244,7 @@ bool ProcessGDBRemote::CanDebug(lldb::TargetSP target_sp, //---------------------------------------------------------------------- ProcessGDBRemote::ProcessGDBRemote(lldb::TargetSP target_sp, ListenerSP listener_sp) - : Process(target_sp, listener_sp), m_flags(0), m_gdb_comm(), + : Process(target_sp, listener_sp), m_debugserver_pid(LLDB_INVALID_PROCESS_ID), m_last_stop_packet_mutex(), m_register_info(), m_async_broadcaster(NULL, "lldb.process.gdb-remote.async-broadcaster"), @@ -3255,7 +3255,6 @@ Status ProcessGDBRemote::DisableWatchpoint(Watchpoint *wp, bool notify) { } void ProcessGDBRemote::Clear() { - m_flags = 0; m_thread_list_real.Clear(); m_thread_list.Clear(); } |