From 3fc649cb76f56da0ded256048de6dc634f03b502 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Sat, 23 Sep 2017 01:03:17 +0000 Subject: [Support] Rename tool_output_file to ToolOutputFile, NFC This class isn't similar to anything from the STL, so it shouldn't use the STL naming conventions. llvm-svn: 314050 --- llvm/tools/llvm-as/llvm-as.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/tools/llvm-as/llvm-as.cpp') diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index 06bc2e99010..dffe9e6ace3 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/tools/llvm-as/llvm-as.cpp @@ -72,8 +72,8 @@ static void WriteOutputFile(const Module *M) { } std::error_code EC; - std::unique_ptr Out( - new tool_output_file(OutputFilename, EC, sys::fs::F_None)); + std::unique_ptr Out( + new ToolOutputFile(OutputFilename, EC, sys::fs::F_None)); if (EC) { errs() << EC.message() << '\n'; exit(1); -- cgit v1.2.3