diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-10-10 11:26:51 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-10-10 11:26:51 +0000 |
commit | 95e264fc8a9335acec624c64a8352fb87a0dfa01 (patch) | |
tree | ecaa6cde8621da4280d5da85d7436f6baf265a88 /lldb/source/Target/LanguageRuntime.cpp | |
parent | 067bb1f546efdb9cae33262b684aeb340798ff57 (diff) | |
download | bcm5719-llvm-95e264fc8a9335acec624c64a8352fb87a0dfa01.tar.gz bcm5719-llvm-95e264fc8a9335acec624c64a8352fb87a0dfa01.zip |
[lldb][NFC] Remove strange bool parameter from Searcher::SearchCallback
Summary:
The SearchCallback has a bool parameter that we always set to false, we never use in any callback implementation and that also changes its name
from one file to the other (either `containing` and `complete`). It was added in the original LLDB check in, so there isn't any history what
this was supposed to be, so let's just remove it.
Reviewers: jingham, JDevlieghere, labath
Reviewed By: jingham, labath
Subscribers: lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D68696
llvm-svn: 374313
Diffstat (limited to 'lldb/source/Target/LanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index dd441581061..999ac99e93c 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -111,12 +111,11 @@ public: ~ExceptionBreakpointResolver() override = default; Searcher::CallbackReturn SearchCallback(SearchFilter &filter, - SymbolContext &context, Address *addr, - bool containing) override { + SymbolContext &context, + Address *addr) override { if (SetActualResolver()) - return m_actual_resolver_sp->SearchCallback(filter, context, addr, - containing); + return m_actual_resolver_sp->SearchCallback(filter, context, addr); else return eCallbackReturnStop; } |