diff options
author | Devin Coughlin <dcoughlin@apple.com> | 2015-06-04 00:18:10 +0000 |
---|---|---|
committer | Devin Coughlin <dcoughlin@apple.com> | 2015-06-04 00:18:10 +0000 |
commit | d7112c391c6ec2d6ce0655299ec7054cf9855811 (patch) | |
tree | 52bb8fd71f1da99a1610f18acd825456b09b5261 /clang/lib | |
parent | fe77e0dcfc1474324decff8a6555e5e5b65112fa (diff) | |
download | bcm5719-llvm-d7112c391c6ec2d6ce0655299ec7054cf9855811.tar.gz bcm5719-llvm-d7112c391c6ec2d6ce0655299ec7054cf9855811.zip |
[analyzer]Test commit fixing 80-column violation in comment. NFC.
llvm-svn: 238993
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp index 8e51154fc3a..d1938a0f7f7 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp @@ -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) |