function_base.hpp type-punned pointer warnings

I get a ton of warnings (well over 5000 in the code base I am compiling) from
function_base.hpp when compiling with gcc.
boost-1.46.0/include/boost/function/function_base.hpp:321: warning:
dereferencing type-punned pointer will break strict-aliasing rules
boost-1.46.0/include/boost/function/function_base.hpp:325: warning:
dereferencing type-punned pointer will break strict-aliasing rules
This has been a known problem for a very long time, and the work around is
quite simple. Replace
reinterpret_cast

"KSpam" wrote:
Note however that this replacement causes a warning on MSVC ('p' not used), so it needs to be conditional, as in https://svn.boost.org/trac/boost/changeset/69251 Is there a ticket?

On Thursday 10 March 2011 09:59:35 Peter Dimov wrote:
Is there a ticket?
I see that #4538 was opened 7 months ago, and it is apparently a duplicate of #3780 from 15 months ago. https://svn.boost.org/trac/boost/ticket/4538 https://svn.boost.org/trac/boost/ticket/3780 Respectfully, Justin
participants (2)
-
KSpam
-
Peter Dimov