Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
Rename tool_output_file to ToolOutputFile, NFC
Browse files Browse the repository at this point in the history
See r314050 for more details

Change-Id: I06a1e62d537abc6a40dd8bb9453059238416904b
  • Loading branch information
kzhuravl committed Sep 23, 2017
1 parent 94b5167 commit a985d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/prepare-builtins/prepare-builtins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ int main(int argc, char **argv) {
}

std::error_code EC;
std::unique_ptr<tool_output_file> Out
(new tool_output_file(OutputFilename, EC, sys::fs::F_None));
std::unique_ptr<ToolOutputFile> Out
(new ToolOutputFile(OutputFilename, EC, sys::fs::F_None));
if (EC) {
errs() << EC.message() << '\n';
exit(1);
Expand Down

0 comments on commit a985d4a

Please sign in to comment.