diff options
author | Ed Maste <emaste@FreeBSD.org> | 2015-02-06 21:38:51 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2015-02-06 21:38:51 +0000 |
commit | 205afe679855a4ce8149cdaa94d3f0868ce796dc (patch) | |
tree | 09bc83f73246ee3c7a779605cd0122093d2a8a19 /include/lldb/Core/FileSpecList.h | |
parent | 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe (diff) |
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. |