summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBModule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r--lldb/source/API/SBModule.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp
index 3090fb4d473..463669fe22c 100644
--- a/lldb/source/API/SBModule.cpp
+++ b/lldb/source/API/SBModule.cpp
@@ -425,12 +425,12 @@ SBModule::FindFirstType (const char *name_cstr)
SymbolContext sc;
TypeList type_list;
uint32_t num_matches = 0;
+ const bool exact_match = false;
ConstString name(name_cstr);
num_matches = module_sp->FindTypes (sc,
name,
- NULL,
- false,
+ exact_match,
1,
type_list);
@@ -451,13 +451,13 @@ SBModule::FindTypes (const char *type)
{
SymbolContext sc;
TypeList type_list;
+ const bool exact_match = false;
uint32_t num_matches = 0;
ConstString name(type);
num_matches = module_sp->FindTypes (sc,
name,
- NULL,
- false,
+ exact_match,
UINT32_MAX,
type_list);
OpenPOWER on IntegriCloud