Added a couple of boost:: qualifiers that were present in 1.34.1 but got lost from the Trunk.

[SVN r40683]
This commit is contained in:
John Maddock
2007-11-02 13:01:39 +00:00
parent 295936b175
commit 2275f12df8
2 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ struct function_traits_helper<R (*)(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)>
template<typename Function>
struct function_traits :
public detail::function_traits_helper<typename add_pointer<Function>::type>
public detail::function_traits_helper<typename boost::add_pointer<Function>::type>
{
};

View File

@ -116,7 +116,7 @@ struct is_class_impl
# ifdef __EDG_VERSION__
BOOST_TT_AUX_BOOL_TRAIT_DEF1(
is_class,T, boost::detail::is_class_impl<typename remove_cv<T>::type>::value)
is_class,T, boost::detail::is_class_impl<typename boost::remove_cv<T>::type>::value)
# else
BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_class,T,::boost::detail::is_class_impl<T>::value)
# endif