diff options
Diffstat (limited to 'clang/lib/Analysis/PointerSubChecker.cpp')
-rw-r--r-- | clang/lib/Analysis/PointerSubChecker.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Analysis/PointerSubChecker.cpp b/clang/lib/Analysis/PointerSubChecker.cpp index ebe051e6e95..5cac8aa99e7 100644 --- a/clang/lib/Analysis/PointerSubChecker.cpp +++ b/clang/lib/Analysis/PointerSubChecker.cpp @@ -58,7 +58,8 @@ void PointerSubChecker::PreVisitBinaryOperator(CheckerContext &C, if (ExplodedNode *N = C.GenerateNode(B)) { if (!BT) BT = new BuiltinBug("Pointer subtraction", - "Subtraction of two pointers that do not point to the same memory chunk may cause incorrect result."); + "Subtraction of two pointers that do not point to " + "the same memory chunk may cause incorrect result."); RangedBugReport *R = new RangedBugReport(*BT, BT->getDescription().c_str(), N); R->addRange(B->getSourceRange()); |