opnsense-src/contrib/libc++/src/any.cpp

24 lines
636 B
C++
Raw Normal View History

//===---------------------------- any.cpp ---------------------------------===//
2015-09-06 14:46:46 -04:00
//
// 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 "any"
#include "experimental/any"
2015-09-06 14:46:46 -04:00
namespace std {
const char* bad_any_cast::what() const _NOEXCEPT {
return "bad any cast";
2015-09-06 14:46:46 -04:00
}
}
_LIBCPP_BEGIN_NAMESPACE_LFTS
const char* bad_any_cast::what() const _NOEXCEPT {
return "bad any cast";
}
_LIBCPP_END_NAMESPACE_LFTS