blob: 7d4ef80c39e3cdee66b1e4d3cda2838736456aa5 [file] [log] [blame]
Howard Hinnant033016c2012-01-25 19:27:42 +00001//===------------------------- cxa_unexpected.cpp -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include <exception>
Mehdi Amini66db5e32017-04-04 05:38:38 +000011#include "cxxabi.h"
Howard Hinnant7da9b962012-01-30 16:07:00 +000012#include "cxa_exception.hpp"
13
14namespace __cxxabiv1
15{
Howard Hinnant033016c2012-01-25 19:27:42 +000016
Howard Hinnant033016c2012-01-25 19:27:42 +000017extern "C"
18{
19
Howard Hinnant033016c2012-01-25 19:27:42 +000020}
21
Howard Hinnant7da9b962012-01-30 16:07:00 +000022} // namespace __cxxabiv1
23