mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-07-31 21:24:40 +02:00
Change __BORLANDC__ to BOOST_BORLANDC, which is defined in Boost config for the Embarcadero non-clang-based compilers.
This commit is contained in:
@@ -73,7 +73,7 @@ void * operator new(size_t n) throw(bad_alloc)
|
||||
return p;
|
||||
}
|
||||
|
||||
#if !defined(__BORLANDC__) || (__BORLANDC__ > 0x551)
|
||||
#if !defined(BOOST_BORLANDC) || (BOOST_BORLANDC > 0x551)
|
||||
|
||||
void * operator new(size_t n, nothrow_t const &) throw()
|
||||
{
|
||||
@@ -95,7 +95,7 @@ void * operator new[](size_t n) throw(bad_alloc)
|
||||
return p;
|
||||
}
|
||||
|
||||
#if !defined(__BORLANDC__) || (__BORLANDC__ > 0x551)
|
||||
#if !defined(BOOST_BORLANDC) || (BOOST_BORLANDC > 0x551)
|
||||
|
||||
void * operator new[](size_t n, nothrow_t const &) throw()
|
||||
{
|
||||
@@ -205,7 +205,7 @@ void operator delete(void * p) throw()
|
||||
free(pm);
|
||||
}
|
||||
|
||||
#if !defined(__BORLANDC__) || (__BORLANDC__ > 0x551)
|
||||
#if !defined(BOOST_BORLANDC) || (BOOST_BORLANDC > 0x551)
|
||||
|
||||
void operator delete(void * p, nothrow_t const &) throw()
|
||||
{
|
||||
@@ -231,7 +231,7 @@ void operator delete[](void * p) throw()
|
||||
free(pm);
|
||||
}
|
||||
|
||||
#if !defined(__BORLANDC__) || (__BORLANDC__ > 0x551)
|
||||
#if !defined(BOOST_BORLANDC) || (BOOST_BORLANDC > 0x551)
|
||||
|
||||
void operator delete[](void * p, nothrow_t const &) throw()
|
||||
{
|
||||
|
Reference in New Issue
Block a user