Use char type directly to avoid invalid aliasing in one more place

This commit is contained in:
Joakim Tosteberg
2018-04-04 09:37:44 +02:00
parent 0482db3a79
commit 9d0acd5195

View File

@ -904,7 +904,9 @@ namespace boost {
if (!f.empty()) {
this->vtable = f.vtable;
if (this->has_trivial_copy_and_destroy())
this->functor = f.functor;
// Don't operate on storage directly since union type doesn't relax
// strict aliasing rules, despite of having member char type.
std::memcpy(this->functor.data, f.functor.data, sizeof(boost::detail::function::function_buffer));
else
get_vtable()->base.manager(f.functor, this->functor,
boost::detail::function::clone_functor_tag);