diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-07-08 16:07:39 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-07-08 16:07:39 +0000 |
commit | 46741758c140a706a23c2c7aa35e9e370307d7ad (patch) | |
tree | f5b3ce6cb807d5524930dd12b42698cb93ba5cb0 /clang/unittests/Basic | |
parent | ce416398ef00fdf1b54f0a146c302b7a0980a21a (diff) | |
download | bcm5719-llvm-46741758c140a706a23c2c7aa35e9e370307d7ad.tar.gz bcm5719-llvm-46741758c140a706a23c2c7aa35e9e370307d7ad.zip |
Update unit test for signature change.
llvm-svn: 212545
Diffstat (limited to 'clang/unittests/Basic')
-rw-r--r-- | clang/unittests/Basic/FileManagerTest.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/unittests/Basic/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp index b5df814ba88..b3bc767949e 100644 --- a/clang/unittests/Basic/FileManagerTest.cpp +++ b/clang/unittests/Basic/FileManagerTest.cpp @@ -51,8 +51,9 @@ public: } // Implement FileSystemStatCache::getStat(). - virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile, - vfs::File **F, vfs::FileSystem &FS) { + LookupResult getStat(const char *Path, FileData &Data, bool isFile, + std::unique_ptr<vfs::File> *F, + vfs::FileSystem &FS) override { if (StatCalls.count(Path) != 0) { Data = StatCalls[Path]; return CacheExists; |