- Removed unused "bool Bool" template parameter which was conflicting with some external library macros.

- Fixed Trac #11500 https://svn.boost.org/trac/boost/ticket/11500
This commit is contained in:
Ion Gaztañaga
2015-07-27 22:20:10 +02:00
parent 0a429e5de9
commit 49a42a2fff

View File

@@ -347,7 +347,7 @@ struct disable_if_convertible
// and_
//
//////////////////////////////////////////////////////////////////////////////
template<bool Bool, class B = true_, class C = true_, class D = true_>
template<bool, class B = true_, class C = true_, class D = true_>
struct and_impl
: and_impl<B::value, C, D>
{};
@@ -374,7 +374,7 @@ struct and_
// or_
//
//////////////////////////////////////////////////////////////////////////////
template<bool Bool, class B = false_, class C = false_, class D = false_>
template<bool, class B = false_, class C = false_, class D = false_>
struct or_impl
: or_impl<B::value, C, D>
{};