mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-06 09:16:33 +02:00
error in "no partial template specialization" code fix
[SVN r22597]
This commit is contained in:
@ -137,7 +137,7 @@ namespace boost {
|
||||
static T* t;
|
||||
public:
|
||||
BOOST_STATIC_CONSTANT(bool, value=(
|
||||
sizeof(has_const_time_insert(t))==sizeof(yes_type) ) );
|
||||
sizeof(has_const_time_insert_tester(t))==sizeof(yes_type) ) );
|
||||
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||
public:
|
||||
BOOST_STATIC_CONSTANT(bool, value=false);
|
||||
@ -160,7 +160,7 @@ namespace boost {
|
||||
static T* t;
|
||||
public:
|
||||
BOOST_STATIC_CONSTANT(bool, value=(
|
||||
sizeof(has_const_time_erase(t))==sizeof(yes_type) ) );
|
||||
sizeof(has_const_time_erase_tester(t))==sizeof(yes_type) ) );
|
||||
#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
||||
public:
|
||||
BOOST_STATIC_CONSTANT(bool, value=false);
|
||||
|
Reference in New Issue
Block a user