diff options
Diffstat (limited to 'llvm/lib/Object/ArchiveWriter.cpp')
-rw-r--r-- | llvm/lib/Object/ArchiveWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/ArchiveWriter.cpp b/llvm/lib/Object/ArchiveWriter.cpp index 19a46c0..b36b256 100644 --- a/llvm/lib/Object/ArchiveWriter.cpp +++ b/llvm/lib/Object/ArchiveWriter.cpp @@ -394,7 +394,7 @@ Error llvm::writeArchive(StringRef ArcName, TmpArchiveFD, TmpArchive)) return errorCodeToError(EC); - tool_output_file Output(TmpArchive, TmpArchiveFD); + ToolOutputFile Output(TmpArchive, TmpArchiveFD); raw_fd_ostream &Out = Output.os(); if (Thin) Out << "!<thin>\n"; |