From d5a7f6f622ff6c0fc0de0ec0d6114e58fd561cba Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 3 Oct 2006 17:51:44 +0000 Subject: [PATCH] Fix for old broken Borland compilers. [SVN r35457] --- include/boost/type_traits.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/type_traits.hpp b/include/boost/type_traits.hpp index afba2ea..80c9954 100644 --- a/include/boost/type_traits.hpp +++ b/include/boost/type_traits.hpp @@ -70,11 +70,13 @@ #include "boost/type_traits/type_with_alignment.hpp" #include "boost/type_traits/function_traits.hpp" #include "boost/type_traits/aligned_storage.hpp" +#if !BOOST_WORKAROUND(__BORLANDC__, < 0x564) #include "boost/type_traits/floating_point_promotion.hpp" #if !(defined(__sgi) && defined(__EDG_VERSION__) && (__EDG_VERSION__ == 238)) #include "boost/type_traits/integral_promotion.hpp" #include "boost/type_traits/promote.hpp" #endif +#endif // Borland #include "boost/type_traits/ice.hpp"