Adding bad_array_length to libc++abi

llvm-svn: 190479
This commit is contained in:
Marshall Clow 2013-09-11 01:42:02 +00:00
parent 6e8ebb2ce9
commit 46c9950f48

View File

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