Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
igaztanaga committed Jul 29, 2015
2 parents 7bf8367 + 49a42a2 commit 4a7a2b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/move/detail/meta_utils.hpp
Expand Up @@ -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>
{};
Expand All @@ -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>
{};
Expand Down

0 comments on commit 4a7a2b8

Please sign in to comment.