[Serialization] msvc8 namespace errors

Hi, I am trying to move from vc6 to vc8 and I am getting errors like the following: boost_1_34_0_RC/boost/serialization/level.hpp(54) : error C2039: 'basic_traits' : is not a member of 'boost::serialization::boost::serialization' Changing boost::serialization::basic_traits to ::boost::serialization::basic_traits fixes the error, but then, there is a message about some other compilers having similar problems. This use of the boost::serialization namespace appears in many files. Please advise, Regards, Nikolay

Hmmm - I know that vc8 is passing all tests without problems so I don't have an explanation for this. Robert Ramey Nikolay Mladenov wrote:
Hi,
I am trying to move from vc6 to vc8 and I am getting errors like the following:
boost_1_34_0_RC/boost/serialization/level.hpp(54) : error C2039: 'basic_traits' : is not a member of 'boost::serialization::boost::serialization'
Changing boost::serialization::basic_traits to
boost::serialization::basic_traits fixes the error, but then, there is a message about some other compilers having similar problems. This use of the boost::serialization namespace appears in many files.
Please advise,
Regards,
Nikolay _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Thanks, I tried to produce small example and found the error on my end. It was caused by: namespace boost{ namespace serialization{ ... BOOST_SERIALIZATION_SPLIT_FREE(test_class) ... }} Best regards, Nikolay On 4/25/07, Robert Ramey <ramey@rrsd.com> wrote:
Hmmm - I know that vc8 is passing all tests without problems so I don't have an explanation for this.
Robert Ramey
Nikolay Mladenov wrote:
Hi,
I am trying to move from vc6 to vc8 and I am getting errors like the following:
boost_1_34_0_RC/boost/serialization/level.hpp(54) : error C2039: 'basic_traits' : is not a member of 'boost::serialization::boost::serialization'
Changing boost::serialization::basic_traits to
boost::serialization::basic_traits fixes the error, but then, there is a message about some other compilers having similar problems. This use of the boost::serialization namespace appears in many files.
Please advise,
Regards,
Nikolay _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
participants (2)
-
Nikolay Mladenov
-
Robert Ramey