Kaydet (Commit) 7e61f39f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:cstylecast: nop between pointer types of exactly same spelling

Change-Id: Id980379f57590759ebc9b862aad3c6dfb04ddef7
üst 3394622e
...@@ -485,7 +485,7 @@ inline uno_Sequence * icopyConstructSequence( ...@@ -485,7 +485,7 @@ inline uno_Sequence * icopyConstructSequence(
for ( sal_Int32 nPos = nElements; nPos--; ) for ( sal_Int32 nPos = nElements; nPos--; )
{ {
reinterpret_cast<void **>(pElements)[nPos] = 0; reinterpret_cast<void **>(pElements)[nPos] = 0;
if (((void **)pSourceElements)[nPos]) if (pSourceElements[nPos])
{ {
(*mapping->mapInterface)( (*mapping->mapInterface)(
mapping, reinterpret_cast<void **>(pElements) + nPos, mapping, reinterpret_cast<void **>(pElements) + nPos,
......
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