diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-03-23 15:50:03 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-03-23 15:50:03 +0000 |
commit | 30b8cd331e93fbb8a3ce36a8eb8a4e7cc21667e9 (patch) | |
tree | 95d9a73fa332a461cf48c6dcfc0c6874a3a38bbf /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h | |
parent | e7d19c38d970b933b6c4d65b9ee721b3ffd34efe (diff) | |
download | bcm5719-llvm-30b8cd331e93fbb8a3ce36a8eb8a4e7cc21667e9.tar.gz bcm5719-llvm-30b8cd331e93fbb8a3ce36a8eb8a4e7cc21667e9.zip |
Remove virtual and add override to all virtual functions in Process/gdb-remote.
llvm-svn: 232952
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h index b3270ab740d..8b5248a831e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h @@ -35,7 +35,7 @@ public: virtual ~GDBRemoteCommunicationServerCommon(); - virtual bool + bool GetThreadSuffixSupported () override { return true; |