[clang-tools-extra] r223777 - [clang-tidy] Fix a typo.
Alexander Kornienko
alexfh at google.com
Tue Dec 9 07:02:18 PST 2014
Author: alexfh
Date: Tue Dec 9 09:02:17 2014
New Revision: 223777
URL: http://llvm.org/viewvc/llvm-project?rev=223777&view=rev
Log:
[clang-tidy] Fix a typo.
Modified:
clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp
Modified: clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp?rev=223777&r1=223776&r2=223777&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp Tue Dec 9 09:02:17 2014
@@ -324,8 +324,9 @@ int clangTidyMain(int argc, const char *
printStats(Stats);
if (DisableFixes)
- llvm::errs() << "Found compiler errors, but -fix-error was not specified.\n"
- "Fixes have NOT been applied.\n\n";
+ llvm::errs()
+ << "Found compiler errors, but -fix-errors was not specified.\n"
+ "Fixes have NOT been applied.\n\n";
if (EnableCheckProfile)
printProfileData(Profile, llvm::errs());
More information about the cfe-commits
mailing list