[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / libcxx / src / support / runtime / stdexcept_vcruntime.ipp
blobe6ecbf782f2a40b333abf30771f1a613b9183fce
1 //===----------------------------------------------------------------------===//
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 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP_ABI_VCRUNTIME
10 #  error This file may only be used when deferring to vcruntime
11 #endif
13 namespace std {
14 logic_error::logic_error(std::string const& s) : exception(s.c_str()) {}
15 runtime_error::runtime_error(std::string const& s) : exception(s.c_str()) {}
16 } // namespace std