r238993 - [analyzer]Test commit fixing 80-column violation in comment. NFC.

Devin Coughlin dcoughlin at apple.com
Wed Jun 3 17:18:10 PDT 2015


Author: dcoughlin
Date: Wed Jun  3 19:18:10 2015
New Revision: 238993

URL: http://llvm.org/viewvc/llvm-project?rev=238993&view=rev
Log:
[analyzer]Test commit fixing 80-column violation in comment. NFC.

Modified:
    cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp?rev=238993&r1=238992&r2=238993&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp Wed Jun  3 19:18:10 2015
@@ -110,7 +110,8 @@ void ObjCContainersChecker::checkPreStmt
   if (Name.equals("CFArrayGetValueAtIndex")) {
     ProgramStateRef State = C.getState();
     // Retrieve the size.
-    // Find out if we saw this array symbol before and have information about it.
+    // Find out if we saw this array symbol before and have information about
+    // it.
     const Expr *ArrayExpr = CE->getArg(0);
     SymbolRef ArraySym = getArraySym(ArrayExpr, C);
     if (!ArraySym)





More information about the cfe-commits mailing list