From: Benjamin Kramer Date: Tue, 8 Jul 2014 16:07:39 +0000 (+0000) Subject: Update unit test for signature change. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46741758c140a706a23c2c7aa35e9e370307d7ad;p=platform%2Fupstream%2Fllvm.git Update unit test for signature change. llvm-svn: 212545 --- 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;