Ticket #3588: boost_io.patch

File boost_io.patch, 636 bytes (added by Seweryn Habdank-Wojewodzki <seweryn@…>, 13 years ago)

Patch for the problem

  • io/ios_state.hpp

     
    226226        { s_save_.fill( a_save_ ); }
    227227
    228228private:
     229    typedef basic_ios_fill_saver this_type;
     230    this_type& operator=(this_type const&);
     231
    229232    state_type &       s_save_;
    230233    aspect_type const  a_save_;
    231234};
     
    251254        { s_save_.imbue( a_save_ ); }
    252255
    253256private:
     257    typedef basic_ios_locale_saver this_type;
     258    this_type& operator=(this_type const&);
     259
    254260    state_type &       s_save_;
    255261    aspect_type const  a_save_;
    256262};