diff options
Diffstat (limited to 'clang/unittests/Frontend/CompilerInstanceTest.cpp')
-rw-r--r-- | clang/unittests/Frontend/CompilerInstanceTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Frontend/CompilerInstanceTest.cpp b/clang/unittests/Frontend/CompilerInstanceTest.cpp index 30775bc3f72..b2d9f8bcf00 100644 --- a/clang/unittests/Frontend/CompilerInstanceTest.cpp +++ b/clang/unittests/Frontend/CompilerInstanceTest.cpp @@ -24,7 +24,7 @@ TEST(CompilerInstance, DefaultVFSOverlayFromInvocation) { int FD; SmallString<256> FileName; ASSERT_FALSE(sys::fs::createTemporaryFile("vfs", "yaml", FD, FileName)); - tool_output_file File(FileName, FD); + ToolOutputFile File(FileName, FD); SmallString<256> CurrentPath; sys::fs::current_path(CurrentPath); |