summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2016-06-27 21:08:35 +0200
committerEike Rathke <erack@redhat.com>2016-06-27 21:08:47 +0200
commit1511f5c399182c003c19cc18b316f2fdaac0501d (patch)
tree28e1df05c1cdef45eba93ef95e0c64483e6e9230 /sal
parent08d8642491771577bfadeaedf3e03bdcea404d26 (diff)
comfort the unhappy compiler
Change-Id: I376040a22b17037893704afbce2b651f8cf2c074
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/rtl/math/test-rtl-math.cxx8
1 files changed, 4 insertions, 4 deletions
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);
}