Skip to content

Commit 969ba9f

Browse files
committed
[lldb] Remove FileSpecList::GetFilesMatchingPartialPath (NFC)
This function is unused and unimplemented.
1 parent e353cd8 commit 969ba9f

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

lldb/include/lldb/Utility/FileSpecList.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,6 @@ class FileSpecList {
200200
return false;
201201
}
202202

203-
static size_t GetFilesMatchingPartialPath(const char *path, bool dir_okay,
204-
FileSpecList &matches);
205-
206203
const_iterator begin() const { return m_files.begin(); }
207204
const_iterator end() const { return m_files.end(); }
208205

lldb/source/Utility/FileSpecList.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,3 @@ size_t FileSpecList::MemorySize() const {
156156

157157
// Return the number of files in the file spec list.
158158
size_t FileSpecList::GetSize() const { return m_files.size(); }
159-
160-
size_t FileSpecList::GetFilesMatchingPartialPath(const char *path,
161-
bool dir_okay,
162-
FileSpecList &matches) {
163-
return 0;
164-
}

0 commit comments

Comments
 (0)