Kaydet (Commit) f1ac2386 authored tarafından Chris Sherlock's avatar Chris Sherlock

tdf#43157: convert dbaccess module away from OSL_ASSERT to assert

Change-Id: I14537ea5c9499df4d9ded48071b066fd8a99a0ce
üst d8c2e2cd
......@@ -1403,7 +1403,7 @@ void SbaXFormAdapter::implInsert(const Any& aElement, sal_Int32 nIndex, const OU
}
// check the index
OSL_ASSERT(nIndex >= 0);
assert(nIndex >= 0);
if (sal::static_int_cast< sal_uInt32 >(nIndex) > m_aChildren.size())
nIndex = m_aChildren.size();
......
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