Borland C++ 5.6 still needs the workaround.

[SVN r16379]
This commit is contained in:
Peter Dimov
2002-11-23 19:18:05 +00:00
parent 0aaca2fffe
commit 1f9908be69

View File

@ -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
{