blob: ac1a0a5b5e8831209d490e9274750993da506f42 [file] [log] [blame]
Louis Dionne9bd93882021-11-17 16:25:01 -05001//===----------------------------------------------------------------------===//
Howard Hinnant11424d32013-09-02 20:30:37 +00002//
Chandler Carruthd2012102019-01-19 10:56:40 +00003// 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 Hinnant11424d32013-09-02 20:30:37 +00006//
7//===----------------------------------------------------------------------===//
8
Arthur O'Dwyercf9bf392022-02-11 13:00:39 -05009#include <__availability>
10#include <optional>
Howard Hinnant11424d32013-09-02 20:30:37 +000011
Eric Fiselierd4ec6352016-10-12 07:46:20 +000012namespace std
13{
Eric Fiselier60737dc2016-10-12 06:48:31 +000014
Louis Dionne65358e12021-03-01 12:09:45 -050015bad_optional_access::~bad_optional_access() noexcept = default;
Marshall Clowa627d4a2017-02-05 20:06:38 +000016
Louis Dionne65358e12021-03-01 12:09:45 -050017const char* bad_optional_access::what() const noexcept {
Marshall Clowa627d4a2017-02-05 20:06:38 +000018 return "bad_optional_access";
19 }
Howard Hinnant11424d32013-09-02 20:30:37 +000020
Eric Fiselierd4ec6352016-10-12 07:46:20 +000021} // std
22
Marshall Clow6c374492018-02-01 18:45:57 +000023
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
30class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_BAD_OPTIONAL_ACCESS bad_optional_access
31 : public std::logic_error
32{
33public:
34 bad_optional_access() : std::logic_error("Bad optional Access") {}
35
36// Get the key function ~bad_optional_access() into the dylib
Louis Dionne65358e12021-03-01 12:09:45 -050037 virtual ~bad_optional_access() noexcept;
Marshall Clow6c374492018-02-01 18:45:57 +000038};
39
Louis Dionne65358e12021-03-01 12:09:45 -050040bad_optional_access::~bad_optional_access() noexcept = default;
Marshall Clow6c374492018-02-01 18:45:57 +000041
42_LIBCPP_END_NAMESPACE_EXPERIMENTAL