From d5b05cafdec62209803e38010b3354660e3e67cd Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Wed, 29 Jun 2016 14:54:09 +0900 Subject: starmath: Replace OSL_ENSURE with assert MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit as negative n would be undefined for OUString::copy(..., n). Change-Id: I950ec60656142450a5d5f6804324f6080c9c4c2a Reviewed-on: https://gerrit.libreoffice.org/26753 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- starmath/source/parse.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'starmath') diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index b7a0cf0aeba2..a25b3a110a42 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -460,7 +460,7 @@ void SmParser::NextToken() --aRes.EndPos; } sal_Int32 n = aRes.EndPos - nRealStart; - OSL_ENSURE( n >= 0, "length < 0" ); + assert(n >= 0); m_aCurToken.eType = TNUMBER; m_aCurToken.cMathChar = '\0'; m_aCurToken.nGroup = TG::NONE; @@ -482,7 +482,7 @@ void SmParser::NextToken() else if (aRes.TokenType & KParseType::IDENTNAME) { sal_Int32 n = aRes.EndPos - nRealStart; - OSL_ENSURE( n >= 0, "length < 0" ); + assert(n >= 0); OUString aName( m_aBufferString.copy( nRealStart, n ) ); const SmTokenTableEntry *pEntry = GetTokenTableEntry( aName ); -- cgit