• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===---------------------------- 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 
10 #include "experimental/any"
11 
12 _LIBCPP_BEGIN_NAMESPACE_LFTS
13 
14 // TODO(EricWF) Enable or delete these
15 //bad_any_cast::bad_any_cast() _NOEXCEPT {}
16 //bad_any_cast::~bad_any_cast() _NOEXCEPT {}
17 
what() const18 const char* bad_any_cast::what() const _NOEXCEPT {
19     return "bad any cast";
20 }
21 
22 _LIBCPP_END_NAMESPACE_LFTS
23