From 49a42a2fffb72d0c5d867acdbdbc3d72912c5184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 27 Jul 2015 22:20:10 +0200 Subject: [PATCH] - 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 --- include/boost/move/detail/meta_utils.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/move/detail/meta_utils.hpp b/include/boost/move/detail/meta_utils.hpp index 9ba41b8..a8a61db 100644 --- a/include/boost/move/detail/meta_utils.hpp +++ b/include/boost/move/detail/meta_utils.hpp @@ -347,7 +347,7 @@ struct disable_if_convertible // and_ // ////////////////////////////////////////////////////////////////////////////// -template +template struct and_impl : and_impl {}; @@ -374,7 +374,7 @@ struct and_ // or_ // ////////////////////////////////////////////////////////////////////////////// -template +template struct or_impl : or_impl {};