cxxabi.cpp 217 B

12345678910111213
  1. #include "cxxabi.h"
  2. #include <new>
  3. extern "C" {
  4. void __cxa_throw_bad_array_length() {
  5. throw std::bad_alloc();
  6. }
  7. void __cxa_throw_bad_array_new_length() {
  8. throw std::bad_alloc();
  9. }
  10. }