forked from boostorg/type_traits
removed illegal default parameters from is_const_helper and is_volatile_helper
[SVN r14625]
This commit is contained in:
@ -191,7 +191,7 @@ namespace detail{
|
||||
|
||||
namespace detail
|
||||
{
|
||||
template <bool is_ref = true, bool array>
|
||||
template <bool is_ref, bool array>
|
||||
struct is_const_impl
|
||||
: ::boost::type_traits::false_unary_metafunction
|
||||
{};
|
||||
@ -257,7 +257,7 @@ struct is_const<const volatile void>
|
||||
|
||||
namespace detail
|
||||
{
|
||||
template <bool is_ref = true, bool array>
|
||||
template <bool is_ref, bool array>
|
||||
struct is_volatile_impl
|
||||
: ::boost::type_traits::false_unary_metafunction
|
||||
{};
|
||||
@ -397,3 +397,4 @@ struct add_cv<T&>{ typedef T& type; };
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user