diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-04-08 17:22:09 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-04-08 17:22:09 +0000 |
commit | bcd891f417ca06b76cdabf368db8bf9b02305aaf (patch) | |
tree | 57d64f757f2d37208cefb5989eed61fa36a05528 /lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h | |
parent | 7ad7792088ce128bc9bb4dd945cad00aed7f213c (diff) | |
download | bcm5719-llvm-bcd891f417ca06b76cdabf368db8bf9b02305aaf.tar.gz bcm5719-llvm-bcd891f417ca06b76cdabf368db8bf9b02305aaf.zip |
Remove redundant virtual for member functions marked 'override'.
llvm-svn: 234422
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h b/lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h index 8aade4d3e74..c557fae2bbc 100644 --- a/lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h +++ b/lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h @@ -42,15 +42,15 @@ class LocalDebugDelegate : public IDebugDelegate public: explicit LocalDebugDelegate(lldb::ProcessSP process); - virtual void OnExitProcess(uint32_t exit_code) override; - virtual void OnDebuggerConnected(lldb::addr_t image_base) override; - virtual ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record) override; - virtual void OnCreateThread(const HostThread &thread) override; - virtual void OnExitThread(const HostThread &thread) override; - virtual void OnLoadDll(const lldb_private::ModuleSpec &module_spec, lldb::addr_t module_addr) override; - virtual void OnUnloadDll(lldb::addr_t module_addr) override; - virtual void OnDebugString(const std::string &message) override; - virtual void OnDebuggerError(const Error &error, uint32_t type) override; + void OnExitProcess(uint32_t exit_code) override; + void OnDebuggerConnected(lldb::addr_t image_base) override; + ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record) override; + void OnCreateThread(const HostThread &thread) override; + void OnExitThread(const HostThread &thread) override; + void OnLoadDll(const lldb_private::ModuleSpec &module_spec, lldb::addr_t module_addr) override; + void OnUnloadDll(lldb::addr_t module_addr) override; + void OnDebugString(const std::string &message) override; + void OnDebuggerError(const Error &error, uint32_t type) override; private: lldb::ProcessSP m_process; |