any.cpp revision 314564
1292928Sdim//===---------------------------- any.cpp ---------------------------------===//
2292928Sdim//
3292928Sdim//                     The LLVM Compiler Infrastructure
4292928Sdim//
5292928Sdim// This file is dual licensed under the MIT and the University of Illinois Open
6292928Sdim// Source Licenses. See LICENSE.TXT for details.
7292928Sdim//
8292928Sdim//===----------------------------------------------------------------------===//
9292928Sdim
10314564Sdim#include "any"
11292928Sdim#include "experimental/any"
12292928Sdim
13314564Sdimnamespace std {
14314564Sdimconst char* bad_any_cast::what() const _NOEXCEPT {
15314564Sdim    return "bad any cast";
16314564Sdim}
17314564Sdim}
18314564Sdim
19292928Sdim_LIBCPP_BEGIN_NAMESPACE_LFTS
20292928Sdimconst char* bad_any_cast::what() const _NOEXCEPT {
21292928Sdim    return "bad any cast";
22292928Sdim}
23292928Sdim_LIBCPP_END_NAMESPACE_LFTS
24