2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00

Remove flotsam

[SVN r17782]
This commit is contained in:
Dave Abrahams
2003-03-08 08:51:45 +00:00
parent a7ce37effa
commit 70a967bac5

View File

@@ -194,24 +194,6 @@ struct is_reference_to_class
{
};
template <class T>
struct is_reference_to_classx
{
BOOST_STATIC_CONSTANT(
bool, value
= (boost::type_traits::ice_and<
is_reference<T>::value
, is_class<
typename remove_cv<
typename remove_reference<T>::type
>::type
>::value
>::value)
);
typedef mpl::bool_<value> type;
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_class,(T))
};
template <class T>
struct is_pointer_to_class
: mpl::and_<