summaryrefslogtreecommitdiffstats
path: root/lldb/source/Breakpoint/BreakpointResolverName.cpp
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-10-10 11:26:51 +0000
committerRaphael Isemann <teemperor@gmail.com>2019-10-10 11:26:51 +0000
commit95e264fc8a9335acec624c64a8352fb87a0dfa01 (patch)
treeecaa6cde8621da4280d5da85d7436f6baf265a88 /lldb/source/Breakpoint/BreakpointResolverName.cpp
parent067bb1f546efdb9cae33262b684aeb340798ff57 (diff)
downloadbcm5719-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/Breakpoint/BreakpointResolverName.cpp')
-rw-r--r--lldb/source/Breakpoint/BreakpointResolverName.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Breakpoint/BreakpointResolverName.cpp b/lldb/source/Breakpoint/BreakpointResolverName.cpp
index c3c05b3b776..59b74dc2964 100644
--- a/lldb/source/Breakpoint/BreakpointResolverName.cpp
+++ b/lldb/source/Breakpoint/BreakpointResolverName.cpp
@@ -250,8 +250,7 @@ void BreakpointResolverName::AddNameLookup(ConstString name,
Searcher::CallbackReturn
BreakpointResolverName::SearchCallback(SearchFilter &filter,
- SymbolContext &context, Address *addr,
- bool containing) {
+ SymbolContext &context, Address *addr) {
SymbolContextList func_list;
// SymbolContextList sym_list;
OpenPOWER on IntegriCloud