
13 Dec
2012
13 Dec
'12
9:26 p.m.
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);