blob: 1fe70a1809c906d264950fe84beccd09803cdadc [file] [log] [blame]
Eric Fiselier94cdacc2016-12-02 23:00:05 +00001//===------------------------ variant.cpp ---------------------------------===//
2//
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