From 6cd3109ff5745b8d0fbe167dd8e6a99897fe1fad Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 25 Jun 2001 11:25:20 +0000 Subject: [PATCH] added bool and wchar_t fixes [SVN r10417] --- include/boost/type_traits/transform_traits_spec.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/type_traits/transform_traits_spec.hpp b/include/boost/type_traits/transform_traits_spec.hpp index 3d05115..e9fd0cb 100644 --- a/include/boost/type_traits/transform_traits_spec.hpp +++ b/include/boost/type_traits/transform_traits_spec.hpp @@ -57,7 +57,11 @@ BOOST_TYPE_TRAITS_SPECIALIZATION_REMOVE_ALL_RANK_2(T const volatile*) \ } \ /**/ +BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(bool) BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(char) +#ifndef BOOST_NO_INTRINSIC_WCHAR_T +BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(wchar_t) +#endif BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(signed char) BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(unsigned char) BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(signed short)