From: Bruno Cardoso Lopes Date: Mon, 22 Feb 2016 19:02:27 +0000 (+0000) Subject: [VFS] Fix call to getVFSFromYAML in unittests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b25146c2052a1e44222f6d0c44d531e64388ba4;p=clang [VFS] Fix call to getVFSFromYAML in unittests Follow up from r261552 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@261556 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Basic/VirtualFileSystemTest.cpp b/unittests/Basic/VirtualFileSystemTest.cpp index 9448ad4f1e..d2f4a7d8f0 100644 --- a/unittests/Basic/VirtualFileSystemTest.cpp +++ b/unittests/Basic/VirtualFileSystemTest.cpp @@ -662,7 +662,7 @@ public: getFromYAMLRawString(StringRef Content, IntrusiveRefCntPtr ExternalFS) { std::unique_ptr Buffer = MemoryBuffer::getMemBuffer(Content); - return getVFSFromYAML(std::move(Buffer), CountingDiagHandler, this, + return getVFSFromYAML(std::move(Buffer), CountingDiagHandler, "", this, ExternalFS); }