diff options
Diffstat (limited to 'libcxx/src')
| -rw-r--r-- | libcxx/src/any.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libcxx/src/any.cpp b/libcxx/src/any.cpp new file mode 100644 index 00000000000..49683db9685 --- /dev/null +++ b/libcxx/src/any.cpp @@ -0,0 +1,22 @@ +//===---------------------------- any.cpp ---------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "experimental/any" + +_LIBCPP_BEGIN_NAMESPACE_LFTS + +bad_any_cast::bad_any_cast() _NOEXCEPT {} + +bad_any_cast::~bad_any_cast() _NOEXCEPT {} + +const char* bad_any_cast::what() const _NOEXCEPT { + return "bad any cast"; +} + +_LIBCPP_END_NAMESPACE_LFTS |

