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-split/llvm-split.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/tools/llvm-split/llvm-split.cpp') diff --git a/llvm/tools/llvm-split/llvm-split.cpp b/llvm/tools/llvm-split/llvm-split.cpp index d340d18fccc..03625fb4a85 100644 --- a/llvm/tools/llvm-split/llvm-split.cpp +++ b/llvm/tools/llvm-split/llvm-split.cpp @@ -55,8 +55,8 @@ int main(int argc, char **argv) { unsigned I = 0; SplitModule(std::move(M), NumOutputs, [&](std::unique_ptr MPart) { std::error_code EC; - std::unique_ptr Out(new tool_output_file( - OutputFilename + utostr(I++), EC, sys::fs::F_None)); + std::unique_ptr Out( + new ToolOutputFile(OutputFilename + utostr(I++), EC, sys::fs::F_None)); if (EC) { errs() << EC.message() << '\n'; exit(1); -- cgit v1.2.3