blob: b6ec448081a9a653673812019567067ff6fc8925 [file] [log] [blame]
Louis Dionne9bd93882021-11-17 16:25:01 -05001//===----------------------------------------------------------------------===//
Eric Fiselier94cdacc2016-12-02 23:00:05 +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
Eric Fiselier94cdacc2016-12-02 23:00:05 +00006//
7//===----------------------------------------------------------------------===//
8
Arthur O'Dwyercf9bf392022-02-11 13:00:39 -05009#include <variant>
Eric Fiselier94cdacc2016-12-02 23:00:05 +000010
11namespace std {
12
13const char* bad_variant_access::what() const noexcept {
14 return "bad_variant_access";
15}
16
17} // namespace std