diff options
author | Eric Christopher <echristo@gmail.com> | 2014-12-10 22:29:58 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-12-10 22:29:58 +0000 |
commit | 2325e38024d095b9780e709cc8ca134aab1941fb (patch) | |
tree | f5779d41646ff77a87e2ebe01a854374430b1f86 /lldb/source/Target/LanguageRuntime.cpp | |
parent | b9c4d1d84ad0617af6dc95266455b74a552e33cf (diff) | |
download | bcm5719-llvm-2325e38024d095b9780e709cc8ca134aab1941fb.tar.gz bcm5719-llvm-2325e38024d095b9780e709cc8ca134aab1941fb.zip |
Fix a bunch of [-Werror,-Winconsistent-missing-override] warnings.
llvm-svn: 223973
Diffstat (limited to 'lldb/source/Target/LanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index 32faa1788f8..358bffee3a4 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -34,8 +34,8 @@ public: virtual ~ExceptionSearchFilter() {}; - virtual bool - ModulePasses (const lldb::ModuleSP &module_sp) + bool + ModulePasses (const lldb::ModuleSP &module_sp) override { UpdateModuleListIfNeeded (); if (m_filter_sp) @@ -43,8 +43,8 @@ public: return false; } - virtual bool - ModulePasses (const FileSpec &spec) + bool + ModulePasses (const FileSpec &spec) override { UpdateModuleListIfNeeded (); if (m_filter_sp) @@ -53,16 +53,16 @@ public: } - virtual void - Search (Searcher &searcher) + void + Search (Searcher &searcher) override { UpdateModuleListIfNeeded (); if (m_filter_sp) m_filter_sp->Search (searcher); } - virtual void - GetDescription (Stream *s) + void + GetDescription (Stream *s) override { UpdateModuleListIfNeeded (); if (m_filter_sp) @@ -136,11 +136,11 @@ public: { } - virtual Searcher::CallbackReturn + Searcher::CallbackReturn SearchCallback (SearchFilter &filter, SymbolContext &context, Address *addr, - bool containing) + bool containing) override { if (SetActualResolver()) @@ -149,8 +149,8 @@ public: return eCallbackReturnStop; } - virtual Searcher::Depth - GetDepth () + Searcher::Depth + GetDepth () override { if (SetActualResolver()) return m_actual_resolver_sp->GetDepth(); @@ -158,8 +158,8 @@ public: return eDepthTarget; } - virtual void - GetDescription (Stream *s) + void + GetDescription (Stream *s) override { s->Printf ("Exception breakpoint (catch: %s throw: %s)", m_catch_bp ? "on" : "off", @@ -175,8 +175,8 @@ public: s->Printf (" the correct runtime exception handler will be determined when you run"); } - virtual void - Dump (Stream *s) const + void + Dump (Stream *s) const override { } |