diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-13 17:06:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-13 17:06:26 +0100 |
commit | 036b4a366ecc7ea343a3fedee268463d6576cb32 (patch) | |
tree | 3767dc4efd0ec23f20d0056d89d8e9b9af65c2af | |
parent | 8a0462791d2477ab6e77369db593c3c7ca641b23 (diff) |
loplugin:defaultparams
Change-Id: I507a16e1d87460dead79b78621202c68ee12c2c8
-rw-r--r-- | sal/qa/rtl/math/test-rtl-math.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/qa/rtl/math/test-rtl-math.cxx b/sal/qa/rtl/math/test-rtl-math.cxx index 663693416639..51a655f7df37 100644 --- a/sal/qa/rtl/math/test-rtl-math.cxx +++ b/sal/qa/rtl/math/test-rtl-math.cxx @@ -100,13 +100,13 @@ public: fVal = 4503599627370495; aRes = rtl::math::doubleToUString( fVal, rtl_math_StringFormat_Automatic, - rtl_math_DecimalPlaces_Max, '.', false); + rtl_math_DecimalPlaces_Max, '.'); CPPUNIT_ASSERT_EQUAL( OUString("4503599627370495"), aRes); fVal = 4503599627370496; aRes = rtl::math::doubleToUString( fVal, rtl_math_StringFormat_Automatic, - 2, '.', false); + 2, '.'); CPPUNIT_ASSERT_EQUAL( OUString("4503599627370496.00"), aRes); fVal = 9007199254740991; // (2^53)-1 |