//===----------------------- functional.cpp -------------------------------===//1//2// The LLVM Compiler Infrastructure3//4// This file is dual licensed under the MIT and the University of Illinois Open5// Source Licenses. See LICENSE.TXT for details.6//7//===----------------------------------------------------------------------===//89#include "functional"1011_LIBCPP_BEGIN_NAMESPACE_STD1213#ifdef _LIBCPP_ABI_BAD_FUNCTION_CALL_KEY_FUNCTION14bad_function_call::~bad_function_call() _NOEXCEPT15{16}1718const char*19bad_function_call::what() const _NOEXCEPT20{21return "std::bad_function_call";22}23#endif2425_LIBCPP_END_NAMESPACE_STD262728