forked from boostorg/function
Remove Borland workaround for obsolete and untested compiler/version.
This commit is contained in:
@ -71,19 +71,10 @@
|
|||||||
# define BOOST_FUNCTION_TARGET_FIX(x)
|
# define BOOST_FUNCTION_TARGET_FIX(x)
|
||||||
#endif // __ICL etc
|
#endif // __ICL etc
|
||||||
|
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__, < 0x5A0)
|
|
||||||
# define BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor,Type) \
|
# define BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor,Type) \
|
||||||
typename ::boost::enable_if_c< \
|
typename ::boost::enable_if_c< \
|
||||||
!(::boost::is_integral<Functor>::value), \
|
!(::boost::is_integral<Functor>::value), \
|
||||||
Type>::type
|
Type>::type
|
||||||
#else
|
|
||||||
// BCC doesn't recognize this depends on a template argument and complains
|
|
||||||
// about the use of 'typename'
|
|
||||||
# define BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL(Functor,Type) \
|
|
||||||
::boost::enable_if_c< \
|
|
||||||
!(::boost::is_integral<Functor>::value), \
|
|
||||||
Type>::type
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
Reference in New Issue
Block a user