parent
6e8ebb2ce9
commit
46c9950f48
|
|
@ -9,6 +9,8 @@
|
|||
// This file implements the new and delete operators.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define _LIBCPP_BUILDING_NEW
|
||||
|
||||
#include <new>
|
||||
#include <cstdlib>
|
||||
|
||||
|
|
@ -228,4 +230,20 @@ bad_array_new_length::what() const _NOEXCEPT
|
|||
return "bad_array_new_length";
|
||||
}
|
||||
|
||||
// bad_array_length
|
||||
|
||||
bad_array_length::bad_array_length() _NOEXCEPT
|
||||
{
|
||||
}
|
||||
|
||||
bad_array_length::~bad_array_length() _NOEXCEPT
|
||||
{
|
||||
}
|
||||
|
||||
const char*
|
||||
bad_array_length::what() const _NOEXCEPT
|
||||
{
|
||||
return "bad_array_length";
|
||||
}
|
||||
|
||||
} // std
|
||||
|
|
|
|||
Loading…
Reference in New Issue