Supress unused variable warning in gcc arm bridge
Change-Id: I78c9d6b5e6af73965cb422dfdbaec5a7f9b57fac Reviewed-on: https://gerrit.libreoffice.org/39829 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
parent
539c75b910
commit
a1aa4f84cf
@ -157,6 +157,7 @@ namespace CPPU_CURRENT_NAMESPACE
|
||||
{
|
||||
pair< t_rtti_map::iterator, bool > insertion(
|
||||
m_rttis.insert( t_rtti_map::value_type( unoName, rtti ) ) );
|
||||
(void) insertion;
|
||||
assert(insertion.second && "### inserting new rtti failed?!");
|
||||
}
|
||||
else
|
||||
@ -199,6 +200,7 @@ namespace CPPU_CURRENT_NAMESPACE
|
||||
|
||||
pair< t_rtti_map::iterator, bool > insertion(
|
||||
m_generatedRttis.insert( t_rtti_map::value_type( unoName, rtti ) ) );
|
||||
(void) insertion;
|
||||
assert(insertion.second && "### inserting new generated rtti failed?!");
|
||||
}
|
||||
else // taking already generated rtti
|
||||
|
Loading…
x
Reference in New Issue
Block a user