diff options
Diffstat (limited to 'include/lldb/Core/FileSpecList.h')
-rw-r--r-- | include/lldb/Core/FileSpecList.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/lldb/Core/FileSpecList.h b/include/lldb/Core/FileSpecList.h index f94bdae83c01a..7730690ca5b7c 100644 --- a/include/lldb/Core/FileSpecList.h +++ b/include/lldb/Core/FileSpecList.h @@ -119,12 +119,15 @@ public: /// @param[in] full /// Should FileSpec::Equal be called with "full" true or false. /// + /// @param[in] remove_backup_dots + /// Should FileSpec::Equal be called with "remove_backup_dots" true or false. + /// /// @return /// The index of the file that matches \a file if it is found, /// else UINT32_MAX is returned. //------------------------------------------------------------------ size_t - FindFileIndex (size_t idx, const FileSpec &file, bool full) const; + FindFileIndex (size_t idx, const FileSpec &file, bool full, bool remove_backup_dots = false) const; //------------------------------------------------------------------ /// Get file at index. |