blob: d38d3a799d32def5e8060c2a5246b0f24b87dae2 [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
9#include "variant"
10
11namespace std {
12
13const char* bad_variant_access::what() const noexcept {
14 return "bad_variant_access";
15}
16
17} // namespace std