xref: /freebsd/contrib/llvm-project/libcxx/src/support/runtime/stdexcept_vcruntime.ipp (revision 62cfcf62f627e5093fb37026a6d8c98e4d2ef04c)
1//===------------------- stdexcept_vcruntime.ipp --------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef _LIBCPP_ABI_VCRUNTIME
10#error This file may only be used when defering to vcruntime
11#endif
12
13namespace std {
14logic_error::logic_error(std::string const& s) : exception(s.c_str()) {}
15runtime_error::runtime_error(std::string const& s) : exception(s.c_str()) {}
16} // namespace std
17