From 257a6c45f89175974d6b29449ef5b35151f63754 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 8 Mar 2003 08:51:45 +0000 Subject: [PATCH] Remove flotsam [SVN r17782] --- .../boost/python/detail/indirect_traits.hpp | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/include/boost/python/detail/indirect_traits.hpp b/include/boost/python/detail/indirect_traits.hpp index b1883cd3..f4986143 100644 --- a/include/boost/python/detail/indirect_traits.hpp +++ b/include/boost/python/detail/indirect_traits.hpp @@ -172,24 +172,6 @@ struct is_reference_to_pointer : mpl::true_ { }; -template -struct is_reference_to_classx -{ - BOOST_STATIC_CONSTANT( - bool, value - = (boost::type_traits::ice_and< - is_reference::value - , is_class< - typename remove_cv< - typename remove_reference::type - >::type - >::value - >::value) - ); - typedef mpl::bool_ type; - BOOST_MPL_AUX_LAMBDA_SUPPORT(1,is_reference_to_class,(T)) -}; - template struct is_reference_to_class : mpl::and_<