Ticket #9964: boost.patch

File boost.patch, 452 bytes (added by Alexander Cheparukhin <cheparukhin@…>, 8 years ago)

patch

  • fusion/container/map/detail/map_impl.hpp

    a b  
    7373        {}
    7474
    7575        map_impl(map_impl&& rhs)
    76           : rest_type(std::forward<rest_type>(*static_cast<rest_type*>(this)))
     76          : rest_type(std::forward<rest_type>(rhs.get_base()))
    7777          , element(std::forward<Pair>(rhs.element))
    7878        {}
    7979