Fix typos.

[SVN r35505]
This commit is contained in:
Dave Abrahams
2006-10-06 15:45:41 +00:00
parent afbb75b3cb
commit cd03e4d537

View File

@@ -397,7 +397,7 @@ struct reference_to_pointer_impl
); );
typedef mpl::bool_<value> type; typedef mpl::bool_<value> type;
} };
template <class T> template <class T>
struct is_reference_to_pointer struct is_reference_to_pointer
@@ -408,7 +408,7 @@ struct is_reference_to_pointer
template <class T> template <class T>
struct is_reference_to_function_pointer struct is_reference_to_function_pointer
: mpl::eval_if<is_reference<T>, is_pointer_to_function_aux<T>, false_>::type : mpl::eval_if<is_reference<T>, is_pointer_to_function_aux<T>, mpl::false_>::type
{ {
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_function_pointer,(T)) BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_function_pointer,(T))
}; };