diff options
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r-- | lldb/source/API/SBModule.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index 1fe5122..a1ec557 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -327,10 +327,12 @@ SBModule::FindFunctions (const char *name, { const bool append = true; const bool symbols_ok = true; + const bool inlines_ok = true; m_opaque_sp->FindFunctions (ConstString(name), NULL, name_type_mask, - symbols_ok, + symbols_ok, + inlines_ok, append, *sb_sc_list); } |