From 72f50743af65eaa90b33486388e57fae9511f310 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 6 Mar 2016 10:02:47 +0100 Subject: [PATCH] cppcheck: help it a bit to not fail with syntax error in its AST Change-Id: I22e1405b2ad94ec4d47011c3f11d108a1bde4fba --- sw/source/core/doc/docedt.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/source/core/doc/docedt.cxx b/sw/source/core/doc/docedt.cxx index 4b8b9770d58c..7dc26e149a43 100644 --- a/sw/source/core/doc/docedt.cxx +++ b/sw/source/core/doc/docedt.cxx @@ -327,8 +327,8 @@ void sw_GetJoinFlags( SwPaM& rPam, bool& rJoinText, bool& rJoinPrev ) rJoinPrev = rPam.GetPoint() == pStt; OSL_ENSURE( !pStt->nContent.GetIndex() && pEndNd->GetText().getLength() != pEnd->nContent.GetIndex() - ? rPam.GetPoint()->nNode < rPam.GetMark()->nNode - : rPam.GetPoint()->nNode > rPam.GetMark()->nNode, + ? (rPam.GetPoint()->nNode < rPam.GetMark()->nNode) + : (rPam.GetPoint()->nNode > rPam.GetMark()->nNode), "sw_GetJoinFlags"); } }