Skip to content
Snippets Groups Projects
Commit 480be663 authored by Benjamin Kramer's avatar Benjamin Kramer
Browse files

Update unit test for signature change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212545 91177308-0d34-0410-b5e6-96231b3b80d8
parent 68aa908a
No related branches found
No related tags found
No related merge requests found
...@@ -51,8 +51,9 @@ public: ...@@ -51,8 +51,9 @@ public:
} }
// Implement FileSystemStatCache::getStat(). // Implement FileSystemStatCache::getStat().
virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile, LookupResult getStat(const char *Path, FileData &Data, bool isFile,
vfs::File **F, vfs::FileSystem &FS) { std::unique_ptr<vfs::File> *F,
vfs::FileSystem &FS) override {
if (StatCalls.count(Path) != 0) { if (StatCalls.count(Path) != 0) {
Data = StatCalls[Path]; Data = StatCalls[Path];
return CacheExists; return CacheExists;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment