diff options
-rw-r--r-- | svgio/qa/cppunit/SvgImportTest.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/qa/cppunit/SvgImportTest.cxx b/svgio/qa/cppunit/SvgImportTest.cxx index 4b42afd2647c..be7493919865 100644 --- a/svgio/qa/cppunit/SvgImportTest.cxx +++ b/svgio/qa/cppunit/SvgImportTest.cxx @@ -78,13 +78,13 @@ void Test::tearDown() void Test::testStyles() { Primitive2DSequence maSequenceRect = parseSvg("/svgio/qa/cppunit/data/Rect.svg"); - CPPUNIT_ASSERT_EQUAL(1, maSequenceRect.getLength()); + CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRect.getLength()); Primitive2DSequence maSequenceRectWithStyle = parseSvg("/svgio/qa/cppunit/data/RectWithStyles.svg"); - CPPUNIT_ASSERT_EQUAL(1, maSequenceRectWithStyle.getLength()); + CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRectWithStyle.getLength()); Primitive2DSequence maSequenceRectWithParentStyle = parseSvg("/svgio/qa/cppunit/data/RectWithParentStyles.svg"); - CPPUNIT_ASSERT_EQUAL(1, maSequenceRectWithParentStyle.getLength()); + CPPUNIT_ASSERT_EQUAL(1, (int) maSequenceRectWithParentStyle.getLength()); // TODO: Test if the 3 sequences are equal.. //const Primitive2DReference xReference(maSequenceRect[0]); |