Fix missing override warnings

llvm-svn: 246084
This commit is contained in:
Enrico Granata 2015-08-26 21:39:52 +00:00
parent 5aba9925c0
commit 7539b02803
2 changed files with 15 additions and 15 deletions

View File

@ -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.

View File

@ -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);