From 7539b028034be8cf6abd9ea3d8e925c007903bb4 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Wed, 26 Aug 2015 21:39:52 +0000 Subject: [PATCH] Fix missing override warnings llvm-svn: 246084 --- .../Hexagon-DYLD/DynamicLoaderHexagonDYLD.h | 16 ++++++++-------- .../POSIX-DYLD/DynamicLoaderPOSIXDYLD.h | 14 +++++++------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h b/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h index 29abb20a4fb4..f17c25412c5c 100644 --- a/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h +++ b/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h @@ -47,29 +47,29 @@ public: //------------------------------------------------------------------ virtual void - DidAttach(); + DidAttach() override; virtual void - DidLaunch(); + DidLaunch() override; virtual lldb::ThreadPlanSP GetStepThroughTrampolinePlan(lldb_private::Thread &thread, - bool stop_others); + bool stop_others) override; virtual lldb_private::Error - CanLoadImage(); + CanLoadImage() override; virtual lldb::addr_t - GetThreadLocalData (const lldb::ModuleSP module, const lldb::ThreadSP thread); + GetThreadLocalData (const lldb::ModuleSP module, const lldb::ThreadSP thread) override; //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ virtual lldb_private::ConstString - GetPluginName(); + GetPluginName() override; virtual uint32_t - GetPluginVersion(); + GetPluginVersion() override; virtual void GetPluginCommandHelp(const char *command, lldb_private::Stream *strm); @@ -131,7 +131,7 @@ protected: /// /// @param module The module to traverse. void - UnloadSections(const lldb::ModuleSP module); + UnloadSections(const lldb::ModuleSP module) override; /// Locates or creates a module given by @p file and updates/loads the /// resulting module at the virtual base address @p base_addr. diff --git a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h index c9445726b0db..b57800dc9fac 100644 --- a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h +++ b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h @@ -49,29 +49,29 @@ public: //------------------------------------------------------------------ virtual void - DidAttach(); + DidAttach() override; virtual void - DidLaunch(); + DidLaunch() override; virtual lldb::ThreadPlanSP GetStepThroughTrampolinePlan(lldb_private::Thread &thread, - bool stop_others); + bool stop_others) override; virtual lldb_private::Error - CanLoadImage(); + CanLoadImage() override; virtual lldb::addr_t - GetThreadLocalData (const lldb::ModuleSP module, const lldb::ThreadSP thread); + GetThreadLocalData (const lldb::ModuleSP module, const lldb::ThreadSP thread) override; //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ virtual lldb_private::ConstString - GetPluginName(); + GetPluginName() override; virtual uint32_t - GetPluginVersion(); + GetPluginVersion() override; virtual void GetPluginCommandHelp(const char *command, lldb_private::Stream *strm);