From 1f9908be693c4bea44a5ae746ccc3705c049c33e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 23 Nov 2002 19:18:05 +0000 Subject: [PATCH] Borland C++ 5.6 still needs the workaround. [SVN r16379] --- include/boost/shared_ptr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/shared_ptr.hpp b/include/boost/shared_ptr.hpp index 6ffca27..03ea7d4 100644 --- a/include/boost/shared_ptr.hpp +++ b/include/boost/shared_ptr.hpp @@ -127,8 +127,8 @@ public: // generated copy constructor, assignment, destructor are fine... -// except on Borland C++ 5.5.1 -#if defined(__BORLANDC__) && (__BORLANDC__ <= 0x551) +// except on Borland C++ 5.5.1 (and 5.6) +#if defined(__BORLANDC__) && (__BORLANDC__ <= 0x560) shared_ptr & operator=(shared_ptr const & r) // never throws {