aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/Basic/VirtualFileSystemTest.cpp
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-02-22 19:02:27 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-02-22 19:02:27 +0000
commit32b6222bc366a424d21811fec576644a9ce53009 (patch)
treee021f6ec994ebbb41d947674bd5c7f2c854b2215 /clang/unittests/Basic/VirtualFileSystemTest.cpp
parent435c2c9def44bd4f14223e7835830e9eaaf0a789 (diff)
downloadllvm-32b6222bc366a424d21811fec576644a9ce53009.zip
llvm-32b6222bc366a424d21811fec576644a9ce53009.tar.gz
llvm-32b6222bc366a424d21811fec576644a9ce53009.tar.bz2
[VFS] Fix call to getVFSFromYAML in unittests
Follow up from r261552 llvm-svn: 261556
Diffstat (limited to 'clang/unittests/Basic/VirtualFileSystemTest.cpp')
-rw-r--r--clang/unittests/Basic/VirtualFileSystemTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/VirtualFileSystemTest.cpp b/clang/unittests/Basic/VirtualFileSystemTest.cpp
index 9448ad4..d2f4a7d 100644
--- a/clang/unittests/Basic/VirtualFileSystemTest.cpp
+++ b/clang/unittests/Basic/VirtualFileSystemTest.cpp
@@ -662,7 +662,7 @@ public:
getFromYAMLRawString(StringRef Content,
IntrusiveRefCntPtr<vfs::FileSystem> ExternalFS) {
std::unique_ptr<MemoryBuffer> Buffer = MemoryBuffer::getMemBuffer(Content);
- return getVFSFromYAML(std::move(Buffer), CountingDiagHandler, this,
+ return getVFSFromYAML(std::move(Buffer), CountingDiagHandler, "", this,
ExternalFS);
}