blob: 4bf3c4d8775988cdf7eb4d9849e927f4c5126243 [file] [log] [blame]
Eric Fiselierd22c9dc2017-02-10 08:57:35 +00001// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
Chandler Carruth57b08b02019-01-19 10:56:40 +00004// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Eric Fiselierd22c9dc2017-02-10 08:57:35 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef __GLIBCXX__
11#error header can only be used when targeting libstdc++ or libsupc++
12#endif
13
14namespace std {
15
16bad_alloc::bad_alloc() _NOEXCEPT
17{
18}
19
20bad_array_new_length::bad_array_new_length() _NOEXCEPT
21{
22}
23
Eric Fiselierd22c9dc2017-02-10 08:57:35 +000024bad_cast::bad_cast() _NOEXCEPT
25{
26}
27
28bad_typeid::bad_typeid() _NOEXCEPT
29{
30}
31
Eric Fiseliere0546932017-03-08 20:06:01 +000032} // namespace std