Skip to content

Commit

Permalink
[FileCollector] Devirtualize FileCollector (NFC)
Browse files Browse the repository at this point in the history
This is not (yet) necessary.
  • Loading branch information
JDevlieghere committed Mar 28, 2020
1 parent 8913769 commit a67f057
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions llvm/include/llvm/Support/FileCollector.h
Expand Up @@ -24,10 +24,9 @@ class FileCollectorFileSystem;
class FileCollector {
public:
FileCollector(std::string Root, std::string OverlayRoot);
virtual ~FileCollector() = default;

virtual void addFile(const Twine &file);
virtual void addDirectory(const Twine &Dir);
void addFile(const Twine &file);
void addDirectory(const Twine &Dir);

/// Write the yaml mapping (for the VFS) to the given file.
std::error_code writeMapping(StringRef MappingFile);
Expand Down

0 comments on commit a67f057

Please sign in to comment.