[clang-tools-extra] r207490 - Fix typo (first commit to test commit access).

Alex McCarthy alexmc at google.com
Mon Apr 28 19:33:58 PDT 2014


Author: alexmc
Date: Mon Apr 28 21:33:58 2014
New Revision: 207490

URL: http://llvm.org/viewvc/llvm-project?rev=207490&view=rev
Log:
Fix typo (first commit to test commit access).

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=207490&r1=207489&r2=207490&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/tool/ClangTidyMain.cpp Mon Apr 28 21:33:58 2014
@@ -34,7 +34,7 @@ static cl::opt<std::string> Checks(
 static cl::opt<std::string> DisableChecks(
     "disable-checks",
     cl::desc("Regular expression matching the names of the checks to disable."),
-    cl::init("(clang-analyzer-alpha.*" // To many false positives.
+    cl::init("(clang-analyzer-alpha.*" // Too many false positives.
              "|llvm-include-order"     // Not implemented yet.
              "|llvm-namespace-comment" // Not complete.
              "|google-.*)"),           // Doesn't apply to LLVM.





More information about the cfe-commits mailing list