From 4ebe6da43cb447ccecd9175dda47f5fd4a66908e Mon Sep 17 00:00:00 2001 From: Robert Ramey Date: Thu, 28 Sep 2006 17:00:38 +0000 Subject: [PATCH] no longer need STD - replace with std [SVN r35381] --- include/boost/serialization/utility.hpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) 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