serialization lib minor suggestion (to Robert Ramey)

Hello, Robert! I've got a couple of linker error with std::wostream & operator<<(std::wostream &os, const char t) and std::wostream & operator<<(std::wostream &os, const char *t) when defining custom archives and explicitly instantiating them in separate library. Can you declare these operators as inline - its would be more convenient for anyone performing same task? With best regards, Sergey.

these operators are not part of the serialization library but rather the standard library. Robert Ramey Sergey Skorniakov wrote:
Hello, Robert!
I've got a couple of linker error with std::wostream & operator<<(std::wostream &os, const char t) and std::wostream & operator<<(std::wostream &os, const char *t) when defining custom archives and explicitly instantiating them in separate library. Can you declare these operators as inline - its would be more convenient for anyone performing same task?
With best regards, Sergey.
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Hello, Robert! You wrote on Thu, 27 Jan 2005 11:20:53 -0800: RR> these operators are not part of the serialization library but rather RR> the standard library. Template version of similar operators are part of the standard library, but I am talking about non-template operators, resided in \archive\impl\xml_woarchive_impl.ipp. Sorry, I forgot to mention this in my previous message. With best regards, Sergey.

Oh - OK I see this now. I'll look in to it. Robert Ramey Sergey Skorniakov wrote:
Hello, Robert! You wrote on Thu, 27 Jan 2005 11:20:53 -0800:
these operators are not part of the serialization library but rather the standard library.
Template version of similar operators are part of the standard library, but I am talking about non-template operators, resided in \archive\impl\xml_woarchive_impl.ipp. Sorry, I forgot to mention this in my previous message.
With best regards, Sergey.
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
participants (2)
-
Robert Ramey
-
Sergey Skorniakov