1*eb8650a7SLouis Dionne//===----------------------------------------------------------------------===// 22710d8e1SEric Fiselier// 32710d8e1SEric Fiselier// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42710d8e1SEric Fiselier// See https://llvm.org/LICENSE.txt for license information. 52710d8e1SEric Fiselier// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 62710d8e1SEric Fiselier// 72710d8e1SEric Fiselier//===----------------------------------------------------------------------===// 82710d8e1SEric Fiselier 92710d8e1SEric Fiselier#ifndef _LIBCPP_ABI_VCRUNTIME 102710d8e1SEric Fiselier#error This file may only be used when defering to vcruntime 112710d8e1SEric Fiselier#endif 122710d8e1SEric Fiselier 132710d8e1SEric Fiseliernamespace std { 142710d8e1SEric Fiselierlogic_error::logic_error(std::string const& s) : exception(s.c_str()) {} 152710d8e1SEric Fiselierruntime_error::runtime_error(std::string const& s) : exception(s.c_str()) {} 162710d8e1SEric Fiselier} // namespace std 17