diff options
author | Reid Kleckner <rnk@google.com> | 2017-09-23 01:04:42 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2017-09-23 01:04:42 +0000 |
commit | 2590edf615da75c18e04ead412f272d4ecc585b3 (patch) | |
tree | a70c2760cbf298d0c8ae064a3e7f826d74d0bb42 /clang/unittests/Frontend/CompilerInstanceTest.cpp | |
parent | 3fc649cb76f56da0ded256048de6dc634f03b502 (diff) | |
download | bcm5719-llvm-2590edf615da75c18e04ead412f272d4ecc585b3.tar.gz bcm5719-llvm-2590edf615da75c18e04ead412f272d4ecc585b3.zip |
Commit missing fixes for tool_file_rename
llvm-svn: 314051
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); |