mirror of
https://github.com/boostorg/type_traits.git
synced 2025-08-01 05:24:38 +02:00
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