aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-11-03 22:12:50 +0000
committerPavel Labath <labath@google.com>2017-11-03 22:12:50 +0000
commita964012cd2480e71bf1b6cff6ca1d32371ab9e16 (patch)
tree04998efdd0e81a7f14de95d601f3c27d93f711d2 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
parent068512dfb933b99f15a69880fb75d6832072eb2a (diff)
downloadllvm-a964012cd2480e71bf1b6cff6ca1d32371ab9e16.zip
llvm-a964012cd2480e71bf1b6cff6ca1d32371ab9e16.tar.gz
llvm-a964012cd2480e71bf1b6cff6ca1d32371ab9e16.tar.bz2
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.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
index 54a472d..0ab3a58 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
@@ -263,7 +263,6 @@ protected:
eBroadcastBitAsyncThreadDidExit = (1 << 2)
};
- Flags m_flags; // Process specific flags (see eFlags enums)
GDBRemoteCommunicationClient m_gdb_comm;
std::atomic<lldb::pid_t> m_debugserver_pid;
std::vector<StringExtractorGDBRemote> m_stop_packet_stack; // The stop packet
@@ -324,10 +323,6 @@ protected:
void Clear();
- Flags &GetFlags() { return m_flags; }
-
- const Flags &GetFlags() const { return m_flags; }
-
bool UpdateThreadList(ThreadList &old_thread_list,
ThreadList &new_thread_list) override;