forked from boostorg/config
Revert "Remove remaining occurances of BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION"
This reverts commit 0e563f0db8
.
This commit is contained in:
@ -121,6 +121,39 @@
|
|||||||
# define BOOST_MSVC6_MEMBER_TEMPLATES
|
# define BOOST_MSVC6_MEMBER_TEMPLATES
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// Without partial specialization, can't test for partial specialisation bugs:
|
||||||
|
//
|
||||||
|
# if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) \
|
||||||
|
&& !defined(BOOST_BCB_PARTIAL_SPECIALIZATION_BUG)
|
||||||
|
# define BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
|
||||||
|
# endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// Without partial specialization, we can't have array-type partial specialisations:
|
||||||
|
//
|
||||||
|
# if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) \
|
||||||
|
&& !defined(BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS)
|
||||||
|
# define BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// Without partial specialization, std::iterator_traits can't work:
|
||||||
|
//
|
||||||
|
# if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) \
|
||||||
|
&& !defined(BOOST_NO_STD_ITERATOR_TRAITS)
|
||||||
|
# define BOOST_NO_STD_ITERATOR_TRAITS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
//
|
||||||
|
// Without partial specialization, partial
|
||||||
|
// specialization with default args won't work either:
|
||||||
|
//
|
||||||
|
# if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) \
|
||||||
|
&& !defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
|
||||||
|
# define BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS
|
||||||
|
# endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// Without member template support, we can't have template constructors
|
// Without member template support, we can't have template constructors
|
||||||
// in the standard library either:
|
// in the standard library either:
|
||||||
|
Reference in New Issue
Block a user