blob: 96855202991dc27a3a97c08277bfa0a79cd9f2f1 [file] [log] [blame]
Eric Fiselier78653ab2015-07-31 02:24:58 +00001//===---------------------------- any.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
Eric Fiselierf6b3bfe2016-08-11 03:13:11 +000010#include "any"
Eric Fiselier78653ab2015-07-31 02:24:58 +000011
Eric Fiselierf6b3bfe2016-08-11 03:13:11 +000012namespace std {
Eric Fiselier78653ab2015-07-31 02:24:58 +000013const char* bad_any_cast::what() const _NOEXCEPT {
14 return "bad any cast";
15}
Eric Fiselierf6b3bfe2016-08-11 03:13:11 +000016}