summaryrefslogtreecommitdiffstats
path: root/libcxx/src/typeinfo.cpp
blob: 17f725c684ea38af78cae78065b3a5e388e9d939 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//===------------------------- typeinfo.cpp -------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <stdlib.h>
#include <cxxabi.h>

#include "typeinfo"

std::bad_cast::bad_cast() throw()
{
}

std::bad_cast::~bad_cast() throw()
{
}

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

std::bad_typeid::bad_typeid() throw()
{
}

std::bad_typeid::~bad_typeid() throw()
{
}

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

#if __APPLE__
  // On Darwin, the cxa_bad_* functions cannot be in the lower level library
  // because bad_cast and bad_typeid are defined in his higher level library
  void __cxxabiv1::__cxa_bad_typeid() { throw std::bad_typeid(); }
  void __cxxabiv1::__cxa_bad_cast() { throw std::bad_cast(); }
#endif

OpenPOWER on IntegriCloud