Extended function lookup to allow the user to
indicate whether inline functions are desired.
This allows the expression parser, for instance,
to filter out inlined functions when looking for
functions it can call.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@150279 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBModule.cpp b/source/API/SBModule.cpp
index 1fe5122..a1ec557 100644
--- a/source/API/SBModule.cpp
+++ b/source/API/SBModule.cpp
@@ -327,10 +327,12 @@
     {
         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);
     }