From 46741758c140a706a23c2c7aa35e9e370307d7ad Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 8 Jul 2014 16:07:39 +0000 Subject: [PATCH] Update unit test for signature change. llvm-svn: 212545 --- clang/unittests/Basic/FileManagerTest.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clang/unittests/Basic/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp index b5df814..b3bc767 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 *F, + vfs::FileSystem &FS) override { if (StatCalls.count(Path) != 0) { Data = StatCalls[Path]; return CacheExists; -- 2.7.4