From 205afe679855a4ce8149cdaa94d3f0868ce796dc Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 6 Feb 2015 21:38:51 +0000 Subject: Import LLDB as of upstream SVN r225923 (git 2b588ecd) This corresponds with the branchpoint for the 3.6 release. A number of files not required for the FreeBSD build have been removed. Sponsored by: DARPA, AFRL --- source/Core/FileSpecList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/Core/FileSpecList.cpp') diff --git a/source/Core/FileSpecList.cpp b/source/Core/FileSpecList.cpp index 0cec8faa6bc4..4b1c991c6be4 100644 --- a/source/Core/FileSpecList.cpp +++ b/source/Core/FileSpecList.cpp @@ -107,7 +107,7 @@ FileSpecList::Dump(Stream *s, const char *separator_cstr) const // it is found, else UINT32_MAX is returned. //------------------------------------------------------------------ size_t -FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool full) const +FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool full, bool remove_dots) const { const size_t num_files = m_files.size(); @@ -124,7 +124,7 @@ FileSpecList::FindFileIndex (size_t start_idx, const FileSpec &file_spec, bool f } else { - if (FileSpec::Equal (m_files[idx], file_spec, full)) + if (FileSpec::Equal (m_files[idx], file_spec, full, remove_dots)) return idx; } } -- cgit v1.2.3