10void*
operator new (std::size_t)
throw(std::bad_alloc);
11void*
operator new[] (std::size_t)
throw(std::bad_alloc);
13const std::nothrow_t std::nothrow;
15void*
operator new (std::size_t
size,
const std::nothrow_t& nothrow_constant)
throw()
19 return operator new (
size);
21 catch (std::bad_alloc)
27void*
operator new[] (std::size_t
size,
const std::nothrow_t& nothrow_constant)
throw()
31 return operator new[] (
size);
33 catch (std::bad_alloc)