diff options
Diffstat (limited to 'lldb/source/Utility/FileSpecList.cpp')
| -rw-r--r-- | lldb/source/Utility/FileSpecList.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/source/Utility/FileSpecList.cpp b/lldb/source/Utility/FileSpecList.cpp index e5e0ac3e5981..d5369ac4bbe5 100644 --- a/lldb/source/Utility/FileSpecList.cpp +++ b/lldb/source/Utility/FileSpecList.cpp @@ -140,12 +140,6 @@ const FileSpec &FileSpecList::GetFileSpecAtIndex(size_t idx) const { return g_empty_file_spec; } -const FileSpec *FileSpecList::GetFileSpecPointerAtIndex(size_t idx) const { - if (idx < m_files.size()) - return &m_files[idx]; - return nullptr; -} - // Return the size in bytes that this object takes in memory. This returns the // size in bytes of this object's member variables and any FileSpec objects its // member variables contain, the result doesn't not include the string values @@ -162,9 +156,3 @@ size_t FileSpecList::MemorySize() const { // Return the number of files in the file spec list. size_t FileSpecList::GetSize() const { return m_files.size(); } - -size_t FileSpecList::GetFilesMatchingPartialPath(const char *path, - bool dir_okay, - FileSpecList &matches) { - return 0; -} |
