From 1511f5c399182c003c19cc18b316f2fdaac0501d Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Mon, 27 Jun 2016 21:08:35 +0200 Subject: comfort the unhappy compiler Change-Id: I376040a22b17037893704afbce2b651f8cf2c074 --- sal/qa/rtl/math/test-rtl-math.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sal') diff --git a/sal/qa/rtl/math/test-rtl-math.cxx b/sal/qa/rtl/math/test-rtl-math.cxx index dc40b22f80e6..58b27b0801cc 100644 --- a/sal/qa/rtl/math/test-rtl-math.cxx +++ b/sal/qa/rtl/math/test-rtl-math.cxx @@ -63,28 +63,28 @@ public: rtl::OUString("NaN"), '.', ',', &status, &end); CPPUNIT_ASSERT_EQUAL(rtl_math_ConversionStatus_Ok, status); - CPPUNIT_ASSERT_EQUAL(3, end); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), end); CPPUNIT_ASSERT_EQUAL(rtl::math::isNan(res), true); res = rtl::math::stringToDouble( rtl::OUString("NaN1.23"), '.', ',', &status, &end); CPPUNIT_ASSERT_EQUAL(rtl_math_ConversionStatus_Ok, status); - CPPUNIT_ASSERT_EQUAL(3, end); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), end); CPPUNIT_ASSERT_EQUAL(rtl::math::isNan(res), true); res = rtl::math::stringToDouble( rtl::OUString("INF"), '.', ',', &status, &end); CPPUNIT_ASSERT_EQUAL(rtl_math_ConversionStatus_OutOfRange, status); - CPPUNIT_ASSERT_EQUAL(3, end); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), end); CPPUNIT_ASSERT_EQUAL(rtl::math::isInf(res), true); res = rtl::math::stringToDouble( rtl::OUString("INF1.23"), '.', ',', &status, &end); CPPUNIT_ASSERT_EQUAL(rtl_math_ConversionStatus_OutOfRange, status); - CPPUNIT_ASSERT_EQUAL(3, end); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), end); CPPUNIT_ASSERT_EQUAL(rtl::math::isInf(res), true); } -- cgit