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.

------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Libwpd-devel mailing list
Libwpd-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libwpd-devel

Reply via email to