Ticket #7990: transform_width.hpp.diff

File transform_width.hpp.diff, 542 bytes (added by Shane Turner <shane.turner@…>, 10 years ago)

Patch to fix copy constructor

  • boost/archive/iterators/transform_width.hpp

    old new  
    119119    transform_width(const transform_width & rhs) :
    120120        super_t(rhs.base_reference()),
    121121        m_buffer_out_full(rhs.m_buffer_out_full),
    122         m_remaining_bits(rhs.m_remaining_bits),
    123122        m_buffer_in(rhs.m_buffer_in),
     123        m_remaining_bits(rhs.m_remaining_bits),
    124124        m_end_of_sequence(false)
    125125    {}
    126126};