Kaydet (Commit) a9c7de32 authored tarafından Matteo Casalin's avatar Matteo Casalin

Fix comparison between signed/unsigned

Change-Id: I0d969ebd523bd20fc36bd8ae63617f2d5a162fe3
üst 7de5c34a
......@@ -1064,7 +1064,7 @@ lcl_GetNextIndex(
}
if(!rBreakArr.empty())
{
if(nRet < 0 || *rBreakArr.begin() < static_cast<sal_uInt32>(nRet))
if(nRet < 0 || *rBreakArr.begin() < nRet)
nRet = *rBreakArr.begin();
}
return nRet;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment