Remove uses of BOOST_FUNCTION_PARTIAL_SPEC

This commit is contained in:
Peter Dimov
2024-01-28 03:12:09 +02:00
parent 1e3d469155
commit 6de542f1bc

View File

@ -960,11 +960,9 @@ template<typename R, typename... T>
R,
T...>& );
#define BOOST_FUNCTION_PARTIAL_SPEC R (T...)
template<typename R,
typename... T>
class function<BOOST_FUNCTION_PARTIAL_SPEC>
class function<R (T...)>
: public function_n<R, T...>
{
typedef function_n<R, T...> base_type;
@ -1046,8 +1044,6 @@ public:
}
};
#undef BOOST_FUNCTION_PARTIAL_SPEC
} // end namespace boost
#if defined(BOOST_MSVC)