Skip to content

Commit

Permalink
Fix travis compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
dgboone committed May 8, 2015
1 parent d28ec2c commit 49c90c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/test/Ice/enums/AllTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
ByteEnumSeq b2;
ByteEnumSeq b3 = proxy->opByteSeq(b1, b2);

for(int i = 0; i < b1.size(); ++i)
for(size_t i = 0; i < b1.size(); ++i)
{
test(b1[i] == b2[i]);
test(b1[i] == b3[i]);
Expand All @@ -149,7 +149,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
ShortEnumSeq s2;
ShortEnumSeq s3 = proxy->opShortSeq(s1, s2);

for(int i = 0; i < s1.size(); ++i)
for(size_t i = 0; i < s1.size(); ++i)
{
test(s1[i] == s2[i]);
test(s1[i] == s3[i]);
Expand All @@ -163,7 +163,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
IntEnumSeq i2;
IntEnumSeq i3 = proxy->opIntSeq(i1, i2);

for(int i = 0; i < i1.size(); ++i)
for(size_t i = 0; i < i1.size(); ++i)
{
test(i1[i] == i2[i]);
test(i1[i] == i3[i]);
Expand All @@ -177,7 +177,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
SimpleEnumSeq s2;
SimpleEnumSeq s3 = proxy->opSimpleSeq(s1, s2);

for(int i = 0; i < s1.size(); ++i)
for(size_t i = 0; i < s1.size(); ++i)
{
test(s1[i] == s2[i]);
test(s1[i] == s3[i]);
Expand Down

0 comments on commit 49c90c9

Please sign in to comment.