[Lldb-commits] [lldb] ef5510d - [NFC][lldb] Correct Module::FindFunctions documentation

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Jun 27 12:33:48 PDT 2022


Author: Alex Langford
Date: 2022-06-27T12:33:05-07:00
New Revision: ef5510d81b64fa64a75b9c9c024d7c0f6cb8e241

URL: https://github.com/llvm/llvm-project/commit/ef5510d81b64fa64a75b9c9c024d7c0f6cb8e241
DIFF: https://github.com/llvm/llvm-project/commit/ef5510d81b64fa64a75b9c9c024d7c0f6cb8e241.diff

LOG: [NFC][lldb] Correct Module::FindFunctions documentation

Looks like a copy/paste from ModuleList::FindCompileUnits.

Added: 
    

Modified: 
    lldb/include/lldb/Core/Module.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Core/Module.h b/lldb/include/lldb/Core/Module.h
index 38051788b9a7f..cc3edbb3f1bbe 100644
--- a/lldb/include/lldb/Core/Module.h
+++ b/lldb/include/lldb/Core/Module.h
@@ -300,7 +300,7 @@ class Module : public std::enable_shared_from_this<Module>,
   /// containing function.  If it is not inlined, then the block will be NULL.
   ///
   /// \param[in] name
-  ///     The name of the compile unit we are looking for.
+  ///     The name of the function we are looking for.
   ///
   /// \param[in] name_type_mask
   ///     A bit mask of bits that indicate what kind of names should


        


More information about the lldb-commits mailing list