mirror of
https://github.com/boostorg/function.git
synced 2025-07-30 04:47:14 +02:00
Remove uses of BOOST_FUNCTION_PARTIAL_SPEC
This commit is contained in:
@ -960,11 +960,9 @@ template<typename R, typename... T>
|
|||||||
R,
|
R,
|
||||||
T...>& );
|
T...>& );
|
||||||
|
|
||||||
#define BOOST_FUNCTION_PARTIAL_SPEC R (T...)
|
|
||||||
|
|
||||||
template<typename R,
|
template<typename R,
|
||||||
typename... T>
|
typename... T>
|
||||||
class function<BOOST_FUNCTION_PARTIAL_SPEC>
|
class function<R (T...)>
|
||||||
: public function_n<R, T...>
|
: public function_n<R, T...>
|
||||||
{
|
{
|
||||||
typedef function_n<R, T...> base_type;
|
typedef function_n<R, T...> base_type;
|
||||||
@ -1046,8 +1044,6 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#undef BOOST_FUNCTION_PARTIAL_SPEC
|
|
||||||
|
|
||||||
} // end namespace boost
|
} // end namespace boost
|
||||||
|
|
||||||
#if defined(BOOST_MSVC)
|
#if defined(BOOST_MSVC)
|
||||||
|
Reference in New Issue
Block a user