mirror of
https://github.com/boostorg/function.git
synced 2025-07-29 12:27:15 +02:00
Remove uses of BOOST_FUNCTION_PARTIAL_SPEC
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user