From: Benjamin Kramer Date: Tue, 8 Jul 2014 16:07:39 +0000 (+0000) Subject: Update unit test for signature change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=480be6634b9b0e68eaa794daf6e8411a289855b7;p=clang Update unit test for signature change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212545 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Basic/FileManagerTest.cpp b/unittests/Basic/FileManagerTest.cpp index b5df814ba8..b3bc767949 100644 --- a/unittests/Basic/FileManagerTest.cpp +++ b/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;