Skip to content

Commit 3da3422

Browse files
author
rnk
committed
Commit missing fixes for tool_file_rename
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@314051 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 908ca6c commit 3da3422

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/llvm-dwarfdump/llvm-dwarfdump.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,10 @@ int main(int argc, char **argv) {
379379
return 0;
380380
}
381381

382-
std::unique_ptr<tool_output_file> OutputFile;
382+
std::unique_ptr<ToolOutputFile> OutputFile;
383383
if (!OutputFilename.empty()) {
384384
std::error_code EC;
385-
OutputFile = llvm::make_unique<tool_output_file>(OutputFilename, EC,
385+
OutputFile = llvm::make_unique<ToolOutputFile>(OutputFilename, EC,
386386
sys::fs::F_None);
387387
error("Unable to open output file" + OutputFilename, EC);
388388
// Don't remove output file if we exit with an error.

0 commit comments

Comments
 (0)