From 59951c185321d0ee8d68fbcde2f2050cc40bccac Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 25 Dec 2020 16:55:55 +0000 Subject: [PATCH] Add missing ). Fixes https://github.com/boostorg/type_traits/issues/150. --- include/boost/type_traits/is_empty.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/is_empty.hpp b/include/boost/type_traits/is_empty.hpp index db9ead0..ce623e3 100644 --- a/include/boost/type_traits/is_empty.hpp +++ b/include/boost/type_traits/is_empty.hpp @@ -103,7 +103,7 @@ struct is_empty_impl cvt , ::boost::is_class::value , ::boost::is_convertible< r_type,int>::value - >::value || BOOST_INTERNAL_IS_EMPTY(cvt)); + >::value || BOOST_INTERNAL_IS_EMPTY(cvt))); }; #endif // BOOST_BORLANDC