blob: 5bb508c3f46765c6f9a302fd5fc53bfcf8dc446f [file] [log] [blame]
Eric Fiseliercab2af82016-12-02 23:00:05 +00001//===------------------------ variant.cpp ---------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "variant"
11
12namespace std {
13
14const char* bad_variant_access::what() const noexcept {
15 return "bad_variant_access";
16}
17
18} // namespace std