bad_array_length.cc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Copyright (C) 2013-2022 Free Software Foundation, Inc.
  2. //
  3. // This file is part of GCC.
  4. //
  5. // GCC is free software; you can redistribute it and/or modify
  6. // it under the terms of the GNU General Public License as published by
  7. // the Free Software Foundation; either version 3, or (at your option)
  8. // any later version.
  9. // GCC is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. // Under Section 7 of GPL version 3, you are granted additional
  14. // permissions described in the GCC Runtime Library Exception, version
  15. // 3.1, as published by the Free Software Foundation.
  16. // You should have received a copy of the GNU General Public License and
  17. // a copy of the GCC Runtime Library Exception along with this program;
  18. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. // <http://www.gnu.org/licenses/>.
  20. #include <new>
  21. namespace std
  22. {
  23. // From N3639. This was voted in and then back out of C++14, and is now
  24. // just here for backward link compatibility with code built with 4.9.
  25. class bad_array_length : public bad_alloc
  26. {
  27. public:
  28. bad_array_length() throw() { };
  29. // This declaration is not useless:
  30. // http://gcc.gnu.org/onlinedocs/gcc-3.0.2/gcc_6.html#SEC118
  31. virtual ~bad_array_length() throw();
  32. // See comment in eh_exception.cc.
  33. virtual const char* what() const throw();
  34. };
  35. bad_array_length::~bad_array_length() _GLIBCXX_USE_NOEXCEPT { }
  36. const char*
  37. bad_array_length::what() const _GLIBCXX_USE_NOEXCEPT
  38. { return "std::bad_array_length"; }
  39. } // namespace std
  40. namespace __cxxabiv1 {
  41. extern "C" void
  42. __cxa_throw_bad_array_length ()
  43. { _GLIBCXX_THROW_OR_ABORT(std::bad_array_length()); }
  44. } // namespace __cxxabiv1