blob: 8c3e9778146242c16bd29f975a8d117c190e1f35 [file] [log] [blame]
Eric Fiselier7175a072015-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
10#include "experimental/any"
11
12_LIBCPP_BEGIN_NAMESPACE_LFTS
13
Dan Albert1d4a1ed2016-05-25 22:36:09 -070014// TODO(EricWF) Enable or delete these
15//bad_any_cast::bad_any_cast() _NOEXCEPT {}
16//bad_any_cast::~bad_any_cast() _NOEXCEPT {}
17
Eric Fiselier7175a072015-07-31 02:24:58 +000018const char* bad_any_cast::what() const _NOEXCEPT {
19 return "bad any cast";
20}
21
22_LIBCPP_END_NAMESPACE_LFTS