diff options
author | dim <dim@FreeBSD.org> | 2015-02-01 02:29:58 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-02-01 02:29:58 +0000 |
commit | 2ccbfd1b8e87d9e16738583f1cb19868ea5ad479 (patch) | |
tree | a0f122f4b76eb51437a7dd525aaf7fc88d4f887f /contrib/libcxxrt/stdexcept.h | |
parent | 111a0cf771f31b0fdae5d6e0e7cbd3277e702172 (diff) | |
download | FreeBSD-src-2ccbfd1b8e87d9e16738583f1cb19868ea5ad479.zip FreeBSD-src-2ccbfd1b8e87d9e16738583f1cb19868ea5ad479.tar.gz |
Revert r278017 (MFC of r273381 and r276417) and r278018 (MFC of r273434)
until I can figure out why it leads to link failures in some scenarios.
Diffstat (limited to 'contrib/libcxxrt/stdexcept.h')
-rw-r--r-- | contrib/libcxxrt/stdexcept.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/contrib/libcxxrt/stdexcept.h b/contrib/libcxxrt/stdexcept.h index 8920393..49eaf55 100644 --- a/contrib/libcxxrt/stdexcept.h +++ b/contrib/libcxxrt/stdexcept.h @@ -81,15 +81,6 @@ namespace std virtual const char* what() const throw(); }; - class bad_array_new_length: public bad_alloc - { - public: - bad_array_new_length() throw(); - bad_array_new_length(const bad_array_new_length&) throw(); - bad_array_new_length& operator=(const bad_array_new_length&) throw(); - virtual ~bad_array_new_length(); - virtual const char *what() const throw(); - }; } // namespace std |