
13 Dec
2012
13 Dec
'12
11:36 p.m.
On Thu, Dec 13, 2012 at 10:26 PM, Joshua Boyce <raptorfactor@raptorfactor.com> wrote:
On Fri, Dec 14, 2012 at 4:04 AM, Gaetano Mendola <mendola@gmail.com> wrote:
The HEAD in trunk have some compilation warnings using gcc 4.7.2 the following will fix some of those.
Another warning about unused result is in here:
libs/serialization/src/basic_iarchive.cpp line 576, the value is used in a BOOST_ASSERT, I don't know how you manage those cases.
Typically the following will work: int result = GetMeaningOfLife(); (void)result; // Tell the compiler to be quiet. Does not affect codegen. BOOST_ASSERT(result == 42);
BOOST_VERIFY(42 == GetMeaningOfLife()); ? -- Olaf