From 862508b9aa4cd758345971e58ddd279ab282466e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 22 Feb 2002 05:29:56 +0000 Subject: [PATCH] oops, bug fix [SVN r12890] --- include/boost/type_traits/object_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/object_traits.hpp b/include/boost/type_traits/object_traits.hpp index 43f4656..867b3a5 100644 --- a/include/boost/type_traits/object_traits.hpp +++ b/include/boost/type_traits/object_traits.hpp @@ -221,7 +221,7 @@ namespace detail BOOST_STATIC_CONSTANT( bool, value = - sizeof(is_POD_array(help()).instance()) > 1); + sizeof(is_POD_array(help()).instance()) == sizeof(::boost::type_traits::yes_type)); }; }; }