]> granicus.if.org Git - clang/commitdiff
[analyzer]Test commit fixing 80-column violation in comment. NFC.
authorDevin Coughlin <dcoughlin@apple.com>
Thu, 4 Jun 2015 00:18:10 +0000 (00:18 +0000)
committerDevin Coughlin <dcoughlin@apple.com>
Thu, 4 Jun 2015 00:18:10 +0000 (00:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238993 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp

index 8e51154fc3a17a0f0c6a9fb19c050e9cc68651d4..d1938a0f7f7e459a155c99ac98b9e1cbf1807f48 100644 (file)
@@ -110,7 +110,8 @@ void ObjCContainersChecker::checkPreStmt(const CallExpr *CE,
   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)