From 0297cf6e6c3da26a930786f8af15e2c9729a2f88 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 9 Sep 2000 10:20:24 +0000 Subject: [PATCH] Updates to cope with Borland C++ 5.51 [SVN r7697] --- include/boost/detail/type_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/detail/type_traits.hpp b/include/boost/detail/type_traits.hpp index 31778b3..429889c 100644 --- a/include/boost/detail/type_traits.hpp +++ b/include/boost/detail/type_traits.hpp @@ -334,7 +334,7 @@ template struct is_pointer { static const bool value = true; }; //* is a type T a reference type - is_reference template struct is_reference { static const bool value = false; }; template struct is_reference { static const bool value = true; }; -#if defined(__BORLANDC__) && (__BORLANDC__ <= 0x550) +#if defined(__BORLANDC__) && (__BORLANDC__ <= 0x551) // these are illegal specialisations; cv-qualifies applied to // references have no effect according to [8.3.2p1], // C++ Builder requires them though as it treats cv-qualified