diff options
-rw-r--r-- | lldb/include/lldb/Core/ModuleList.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/include/lldb/Core/ModuleList.h b/lldb/include/lldb/Core/ModuleList.h index 29b87de..909ee08 100644 --- a/lldb/include/lldb/Core/ModuleList.h +++ b/lldb/include/lldb/Core/ModuleList.h @@ -326,11 +326,11 @@ public: void FindGlobalVariables(const RegularExpression ®ex, size_t max_matches, VariableList &variable_list) const; - /// Finds the first module whose file specification matches \a file_spec. + /// Finds modules whose file specification matches \a module_spec. /// /// \param[in] module_spec /// A file specification object to match against the Module's - /// file specifications. If \a file_spec does not have + /// file specifications. If \a module_spec does not have /// directory information, matches will occur by matching only /// the basename of any modules in this list. If this value is /// NULL, then file specifications won't be compared when @@ -351,6 +351,7 @@ public: // UUID values is very efficient and accurate. lldb::ModuleSP FindModule(const UUID &uuid) const; + /// Finds the first module whose file specification matches \a module_spec. lldb::ModuleSP FindFirstModule(const ModuleSpec &module_spec) const; void FindSymbolsWithNameAndType(ConstString name, |