summaryrefslogtreecommitdiffstats
path: root/src/new.cpp
blob: 4ab199b916e9cfa6e3017ebb093e7423ba4f1bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//===--------------------------- new.cpp ----------------------------------===//
//
// ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "new"

namespace std
{

bad_array_new_length::~bad_array_new_length() throw()
{
}

const char*
bad_array_new_length::what() const throw()
{
    return "bad_array_new_length";
}

void
__throw_bad_alloc()
{
    throw bad_alloc();
}

}  // std