Hi,

On Fri, May 23, 2014 at 08:37:30PM +0200, Andreas Radke wrote:
> while building our packages the test suite fails for 32bit (64bit
> builds well):
> 
> RVNGBinaryDataTest.cpp:104:2: error: no matching function for call to 
> 'assertEquals(const size_t&, long unsigned int, CppUnit::SourceLine, const 
> char [1])'
>   CPPUNIT_ASSERT_EQUAL(len, data.size());
>   ^

Sigh. CPPUNIT_ASSERT_EQUAL is more pain than it is worth... Just replace
that line by either

CPPUNIT_ASSERT_EQUAL(static_cast<unsigned long>(len), data.size());

or

CPPUNIT_ASSERT(len == data.size());

D.

-- 
To unsubscribe e-mail to: [email protected]
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.documentliberation.org/www/discuss/
All messages sent to this list will be publicly archived and cannot be deleted

Reply via email to