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

loplugin:loopvartoosmall

Change-Id: Iedfb57f97a15b17a68a5de8e5efd9ba196864964
üst 3ef509a1
......@@ -125,7 +125,7 @@ void VariadicTemplatesTest::testUnwrapArgs() {
::com::sun::star::uno::Any* p1 = seq1.getArray();
::com::sun::star::uno::Any* p2 = seq2.getArray();
for( sal_Int16 i = 0; i < seq1.getLength() && i < seq2.getLength(); ++i ) {
for( sal_Int32 i = 0; i < seq1.getLength() && i < seq2.getLength(); ++i ) {
CPPUNIT_ASSERT_EQUAL_MESSAGE( "seq1 and seq2 are equal",
p1[i], p2[i] );
}
......
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