We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908ca6c commit 3da3422Copy full SHA for 3da3422
tools/llvm-dwarfdump/llvm-dwarfdump.cpp
@@ -379,10 +379,10 @@ int main(int argc, char **argv) {
379
return 0;
380
}
381
382
- std::unique_ptr<tool_output_file> OutputFile;
+ std::unique_ptr<ToolOutputFile> OutputFile;
383
if (!OutputFilename.empty()) {
384
std::error_code EC;
385
- OutputFile = llvm::make_unique<tool_output_file>(OutputFilename, EC,
+ OutputFile = llvm::make_unique<ToolOutputFile>(OutputFilename, EC,
386
sys::fs::F_None);
387
error("Unable to open output file" + OutputFilename, EC);
388
// Don't remove output file if we exit with an error.
0 commit comments