Skip to content

Commit

Permalink
[lldb] Remove FileSpecList::GetFilesMatchingPartialPath (NFC)
Browse files Browse the repository at this point in the history
This function is unused and unimplemented.
  • Loading branch information
JDevlieghere committed Oct 19, 2023
1 parent e353cd8 commit 969ba9f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions lldb/include/lldb/Utility/FileSpecList.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,6 @@ class FileSpecList {
return false;
}

static size_t GetFilesMatchingPartialPath(const char *path, bool dir_okay,
FileSpecList &matches);

const_iterator begin() const { return m_files.begin(); }
const_iterator end() const { return m_files.end(); }

Expand Down
6 changes: 0 additions & 6 deletions lldb/source/Utility/FileSpecList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,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;
}

0 comments on commit 969ba9f

Please sign in to comment.