Kaydet (Commit) 0dde6d4a authored tarafından Michael Meeks's avatar Michael Meeks

fix 32bit build wrt. int vs. sal_Int32 comparison

Change-Id: I7ae0014c2b8e14dabab0d64cb498abb820b3968d
üst 098be920
...@@ -76,7 +76,7 @@ void test::oustring::Compare::compareToAscii() ...@@ -76,7 +76,7 @@ void test::oustring::Compare::compareToAscii()
rtl::OUString abc("abc"); rtl::OUString abc("abc");
CPPUNIT_ASSERT(abc.compareToAscii("a") > 0); CPPUNIT_ASSERT(abc.compareToAscii("a") > 0);
CPPUNIT_ASSERT_EQUAL( CPPUNIT_ASSERT_EQUAL(
0, abc.compareToAscii(RTL_CONSTASCII_STRINGPARAM("a"))); sal_Int32(0), abc.compareToAscii(RTL_CONSTASCII_STRINGPARAM("a")));
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment