From 4b7ec4a6baa740aa82bee1430694dabf789bf62a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 23 Apr 2003 10:47:33 +0000 Subject: [PATCH] Previous "fix" included a bug,now fixed. [SVN r18291] --- include/boost/type_traits/is_union.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/is_union.hpp b/include/boost/type_traits/is_union.hpp index 99f2dcf..89c4a0a 100644 --- a/include/boost/type_traits/is_union.hpp +++ b/include/boost/type_traits/is_union.hpp @@ -35,7 +35,7 @@ template struct is_union_impl // template struct is_union_impl { - BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_UNION(cvt)); + BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_UNION(T)); }; #endif } // namespace detail