diff --git a/include/boost/serialization/utility.hpp b/include/boost/serialization/utility.hpp index a490ce6e..ea53d04d 100644 --- a/include/boost/serialization/utility.hpp +++ b/include/boost/serialization/utility.hpp @@ -23,14 +23,6 @@ #include #include -// function specializations must be defined in the appropriate -// namespace - boost::serialization -#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) -#define STD _STLP_STD -#else -#define STD std -#endif - namespace boost { namespace serialization { @@ -38,7 +30,7 @@ namespace serialization { template inline void serialize( Archive & ar, - STD::pair & p, + std::pair & p, const unsigned int /* file_version */ ){ // note: we remove any const-ness on the first argument. The reason is that @@ -51,6 +43,5 @@ inline void serialize( } // serialization } // namespace boost -#undef STD #endif // BOOST_SERIALIZATION_UTILITY_HPP