Partially revert r273382, to reduce diffs against upstream. This was a

temporary fix to solve a conflict with an older version of libc++, and
it is no longer relevant.

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2015-01-30 18:26:38 +00:00
parent b6a6b77b12
commit 09a4a1f2d8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277944

View File

@ -82,19 +82,14 @@ const char* bad_typeid::what() const throw()
return "std::bad_typeid";
}
__attribute__((weak))
bad_array_new_length::bad_array_new_length() throw() {}
__attribute__((weak))
bad_array_new_length::~bad_array_new_length() {}
__attribute__((weak))
bad_array_new_length::bad_array_new_length(const bad_array_new_length&) throw() {}
__attribute__((weak))
bad_array_new_length& bad_array_new_length::operator=(const bad_array_new_length&) throw()
{
return *this;
}
__attribute__((weak))
const char* bad_array_new_length::what() const throw()
{
return "std::bad_array_new_length";