diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Windows')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/DynamicLoaderWindows.h | 6 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Windows/LocalDebugDelegate.h | 18 |
2 files changed, 12 insertions, 12 deletions
diff --git a/lldb/source/Plugins/Process/Windows/DynamicLoaderWindows.h b/lldb/source/Plugins/Process/Windows/DynamicLoaderWindows.h index b9cfb92eae0..304c6f8f639 100644 --- a/lldb/source/Plugins/Process/Windows/DynamicLoaderWindows.h +++ b/lldb/source/Plugins/Process/Windows/DynamicLoaderWindows.h @@ -34,10 +34,10 @@ class DynamicLoaderWindows : public DynamicLoader Error CanLoadImage () override; lldb::ThreadPlanSP GetStepThroughTrampolinePlan(Thread &thread, bool stop) override; - virtual ConstString GetPluginName() override; - virtual uint32_t GetPluginVersion() override; + ConstString GetPluginName() override; + uint32_t GetPluginVersion() override; }; } -#endif
\ No newline at end of file +#endif 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; |