From 7fff4fdaa5b1f99f7cff3b5a4af33379100528b1 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Mon, 13 Nov 2006 22:11:30 +0000 Subject: [PATCH] move identifier to namespace detail [SVN r36028] --- include/boost/system/error_code.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/boost/system/error_code.hpp b/include/boost/system/error_code.hpp index 262639f..479f2c3 100644 --- a/include/boost/system/error_code.hpp +++ b/include/boost/system/error_code.hpp @@ -40,13 +40,14 @@ namespace boost // class error_category ------------------------------------------------// - class BOOST_SYSTEM_DECL error_category : public identifier< uint_least32_t, error_category > + class BOOST_SYSTEM_DECL error_category + : public boost::detail::identifier< uint_least32_t, error_category > { public: error_category() - : boost::identifier< uint_least32_t, error_category >(0){} + : boost::detail::identifier< uint_least32_t, error_category >(0){} explicit error_category( value_type v ) - : boost::identifier< uint_least32_t, error_category >(v){} + : boost::detail::identifier< uint_least32_t, error_category >(v){} }; // predefined error categories -----------------------------------------//