xref: /openbsd-src/gnu/llvm/libcxx/src/stdexcept.cpp (revision 4bdff4bed0e3d54e55670334c7d0077db4170f86)
1*4bdff4beSrobert //===----------------------------------------------------------------------===//
246035553Spatrick //
346035553Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
446035553Spatrick // See https://llvm.org/LICENSE.txt for license information.
546035553Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
646035553Spatrick //
746035553Spatrick //===----------------------------------------------------------------------===//
846035553Spatrick 
9*4bdff4beSrobert #include <new>
10*4bdff4beSrobert #include <stdexcept>
11*4bdff4beSrobert #include <string>
12*4bdff4beSrobert #include <system_error>
1346035553Spatrick 
1446035553Spatrick #ifdef _LIBCPP_ABI_VCRUNTIME
1546035553Spatrick #include "support/runtime/stdexcept_vcruntime.ipp"
1646035553Spatrick #else
1746035553Spatrick #include "support/runtime/stdexcept_default.ipp"
1846035553Spatrick #endif
19