Ticket #1286: basic_oarchive.hpp.patch

File basic_oarchive.hpp.patch, 862 bytes (added by ddeakins@…, 15 years ago)

Patch for boost\archive\detail\basic_oarchive.hpp

  • basic_oarchive.hpp

     
    7171public:
    7272    // note: NOT part of the public interface
    7373    void register_basic_serializer(
    74         const BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_oserializer & bos
     74        const basic_oserializer & bos
    7575    );
    7676    void save_object(
    7777        const void *x,
    78         const BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) basic_oserializer & bos
     78        const basic_oserializer & bos
    7979    );
    8080    void save_pointer(
    8181        const void * t,
    82         const BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY())
    83             basic_pointer_oserializer * bpos_ptr
     82        const basic_pointer_oserializer * bpos_ptr
    8483    );
    8584    void save_null_pointer(){
    8685        vsave(NULL_POINTER_TAG);