removed illegal default parameters from is_const_helper and is_volatile_helper

[SVN r14625]
This commit is contained in:
John Maddock
2002-07-27 11:42:51 +00:00
parent 57085fa2fd
commit 15ec877a06

View File

@ -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; };