Index: scoped_ptr.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/serialization/scoped_ptr.hpp,v retrieving revision 1.2 diff -u -r1.2 scoped_ptr.hpp --- scoped_ptr.hpp 4 Aug 2004 05:23:40 -0000 1.2 +++ scoped_ptr.hpp 25 Sep 2004 11:24:06 -0000 @@ -33,7 +33,7 @@ const unsigned int /* version */ ){ T* r = t.get(); - ar << make_nvp("scoped_ptr", r); + ar << boost::serialization::make_nvp("scoped_ptr", r); } template @@ -43,7 +43,7 @@ const unsigned int /* version */ ){ T* r; - ar >> make_nvp("scoped_ptr", r); + ar >> boost::serialization::make_nvp("scoped_ptr", r); t.reset(r); }