Howard Hinnant | 11424d3 | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 1 | //===------------------------ optional.cpp --------------------------------===// |
| 2 | // |
Chandler Carruth | d201210 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Howard Hinnant | 11424d3 | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Eric Fiselier | d4ec635 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 9 | #include "optional" |
Louis Dionne | 73912b2 | 2020-11-04 15:01:25 -0500 | [diff] [blame] | 10 | #include "__availability" |
Howard Hinnant | 11424d3 | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 11 | |
Eric Fiselier | d4ec635 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 12 | namespace std |
| 13 | { |
Eric Fiselier | 60737dc | 2016-10-12 06:48:31 +0000 | [diff] [blame] | 14 | |
Marshall Clow | 53fc037 | 2017-02-05 20:52:32 +0000 | [diff] [blame] | 15 | bad_optional_access::~bad_optional_access() _NOEXCEPT = default; |
Marshall Clow | a627d4a | 2017-02-05 20:06:38 +0000 | [diff] [blame] | 16 | |
| 17 | const char* bad_optional_access::what() const _NOEXCEPT { |
| 18 | return "bad_optional_access"; |
| 19 | } |
Howard Hinnant | 11424d3 | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 20 | |
Eric Fiselier | d4ec635 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 21 | } // std |
| 22 | |
Marshall Clow | 6c37449 | 2018-02-01 18:45:57 +0000 | [diff] [blame] | 23 | |
| 24 | #include <experimental/__config> |
| 25 | |
| 26 | // Preserve std::experimental::bad_optional_access for ABI compatibility |
| 27 | // Even though it no longer exists in a header file |
| 28 | _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL |
| 29 | |
| 30 | class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_BAD_OPTIONAL_ACCESS bad_optional_access |
| 31 | : public std::logic_error |
| 32 | { |
| 33 | public: |
| 34 | bad_optional_access() : std::logic_error("Bad optional Access") {} |
| 35 | |
| 36 | // Get the key function ~bad_optional_access() into the dylib |
| 37 | virtual ~bad_optional_access() _NOEXCEPT; |
| 38 | }; |
| 39 | |
| 40 | bad_optional_access::~bad_optional_access() _NOEXCEPT = default; |
| 41 | |
| 42 | _LIBCPP_END_NAMESPACE_EXPERIMENTAL |