mirror of
https://github.com/boostorg/bind.git
synced 2025-09-27 17:30:54 +02:00
Fix nullary member function case
This commit is contained in:
@@ -2292,6 +2292,15 @@ template< class R, class T > struct add_cref< R (T::*) () const, 1 >
|
|||||||
typedef void type;
|
typedef void type;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef __cpp_noexcept_function_type
|
||||||
|
|
||||||
|
template< class R, class T > struct add_cref< R (T::*) () const noexcept, 1 >
|
||||||
|
{
|
||||||
|
typedef void type;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // __cpp_noexcept_function_type
|
||||||
|
|
||||||
#endif // __IBMCPP__
|
#endif // __IBMCPP__
|
||||||
|
|
||||||
template<class R> struct isref
|
template<class R> struct isref
|
||||||
|
Reference in New Issue
Block a user