Kaydet (Commit) e31a3abf authored tarafından Thomas Arnhold's avatar Thomas Arnhold

WaE: -Wunused-variable

Change-Id: I31bdce7f31185faebaf8a8a2162669b185def0c9
üst 3ff650d5
......@@ -158,7 +158,7 @@ type_info * RTTI::getRTTI( typelib_CompoundTypeDescription *pTypeDescr ) SAL_THR
{
pair< t_rtti_map::iterator, bool > insertion(
m_rttis.insert( t_rtti_map::value_type( unoName, rtti ) ) );
OSL_ENSURE( insertion.second, "### inserting new rtti failed?!" );
SAL_WARN_IF( !insertion.second, "bridges", "### inserting new rtti failed?!" );
}
else
{
......@@ -189,7 +189,7 @@ type_info * RTTI::getRTTI( typelib_CompoundTypeDescription *pTypeDescr ) SAL_THR
pair< t_rtti_map::iterator, bool > insertion(
m_generatedRttis.insert( t_rtti_map::value_type( unoName, rtti ) ) );
OSL_ENSURE( insertion.second, "### inserting new generated rtti failed?!" );
SAL_WARN_IF( !insertion.second, "bridges", "### inserting new generated rtti failed?!" );
}
else // taking already generated rtti
{
......
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