Kaydet (Commit) 6e60a6f9 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-variable

Change-Id: Ieac2e725b2baad29dedb225d6009b2abe421be04
üst 3d125493
...@@ -270,14 +270,12 @@ static sal_Bool performAnyTest( const Reference< XBridgeTest > &xLBT, const Test ...@@ -270,14 +270,12 @@ static sal_Bool performAnyTest( const Reference< XBridgeTest > &xLBT, const Test
Any a; Any a;
{ {
a.setValue( &(data.Bool) , getCppuBooleanType() ); a.setValue( &(data.Bool) , getCppuBooleanType() );
Any a2 = xLBT->transportAny( a ); OSL_ASSERT( xLBT->transportAny( a ) == a );
OSL_ASSERT( a2 == a );
} }
{ {
a.setValue( &(data.Char) , getCppuCharType() ); a.setValue( &(data.Char) , getCppuCharType() );
Any a2 = xLBT->transportAny( a ); OSL_ASSERT( xLBT->transportAny( a ) == a );
OSL_ASSERT( a2 == a );
} }
return bReturn; return bReturn;
......
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