mirror of
https://github.com/boostorg/move.git
synced 2025-08-02 21:54:26 +02:00
- 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:
@@ -347,7 +347,7 @@ struct disable_if_convertible
|
|||||||
// and_
|
// 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
|
struct and_impl
|
||||||
: and_impl<B::value, C, D>
|
: and_impl<B::value, C, D>
|
||||||
{};
|
{};
|
||||||
@@ -374,7 +374,7 @@ struct and_
|
|||||||
// or_
|
// 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
|
struct or_impl
|
||||||
: or_impl<B::value, C, D>
|
: or_impl<B::value, C, D>
|
||||||
{};
|
{};
|
||||||
|
Reference in New Issue
Block a user