blob: 0f78932f6f9813c70aebb2ff49ae7b1d0258da20 [file] [log] [blame]
Eric Fiselierd22c9dc2017-02-10 08:57:35 +00001// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef __GLIBCXX__
12#error header can only be used when targeting libstdc++ or libsupc++
13#endif
14
15namespace std {
16
17bad_alloc::bad_alloc() _NOEXCEPT
18{
19}
20
21bad_array_new_length::bad_array_new_length() _NOEXCEPT
22{
23}
24
25bad_array_length::bad_array_length() _NOEXCEPT
26{
27}
28
29
30bad_cast::bad_cast() _NOEXCEPT
31{
32}
33
34bad_typeid::bad_typeid() _NOEXCEPT
35{
36}
37
Eric Fiseliere0546932017-03-08 20:06:01 +000038} // namespace std