merged from trunk

[SVN r21697]
This commit is contained in:
Dave Abrahams
2004-01-13 19:19:35 +00:00
parent 7b199b7b45
commit 183c32f112

View File

@ -55,14 +55,12 @@ namespace detail
template <class P>
struct pointee
: mpl::apply_if<
detail::is_incrementable<P>
, detail::iterator_pointee<P>
, detail::smart_ptr_pointee<P>
>
{
typedef typename remove_cv<P>::type stripped;
typedef typename mpl::apply_if<
detail::is_incrementable<stripped>
, detail::iterator_pointee<stripped>
, detail::smart_ptr_pointee<stripped>
>::type type;
};
} // namespace boost