summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-26 21:58:53 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-26 21:58:53 +0100
commite821f8848f477eb1a58e7e892f34110c6cb51160 (patch)
tree86c7bd1bb5e5f51033d2e4a91914d2aaaf966021 /comphelper
parent3ef509a1d9236c6c71e7baa5f7ca7f0a2780fea1 (diff)
loplugin:loopvartoosmall
Change-Id: Iedfb57f97a15b17a68a5de8e5efd9ba196864964
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/qa/unit/variadictemplates.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/qa/unit/variadictemplates.cxx b/comphelper/qa/unit/variadictemplates.cxx
index 2a3d0fef763f..146a4298fd87 100644
--- a/comphelper/qa/unit/variadictemplates.cxx
+++ b/comphelper/qa/unit/variadictemplates.cxx
@@ -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] );
}