move identifier to namespace detail

[SVN r36028]
This commit is contained in:
Beman Dawes
2006-11-13 22:11:30 +00:00
parent cd705b37ea
commit 7fff4fdaa5

View File

@@ -40,13 +40,14 @@ namespace boost
// class error_category ------------------------------------------------// // 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: public:
error_category() 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 ) 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 -----------------------------------------// // predefined error categories -----------------------------------------//