Fixed preprocessor logic to cope with compilers that have no member template support

[SVN r10007]
This commit is contained in:
John Maddock
2001-05-03 11:05:08 +00:00
parent 9c6b64b295
commit ea3db514e1

View File

@ -138,7 +138,7 @@ template <class T>
struct is_function
{
private:
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_MEMBER_TEMPLATES)
typedef typename detail::is_function_chooser< ::boost::is_reference<T>::value>::template rebind<T> binder;
typedef typename binder::type m_type;
#else