blob: f6e6b6ab97e1ad0fc20470f3b17bb2d5406f36b6 [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>
Howard Hinnant7da9b962012-01-30 16:07:00 +000011#include <cxxabi.h>
12#include "cxa_exception.hpp"
13
14namespace __cxxabiv1
15{
Howard Hinnant033016c2012-01-25 19:27:42 +000016
17#pragma GCC visibility push(default)
18
19extern "C"
20{
21
Howard Hinnant033016c2012-01-25 19:27:42 +000022}
23
24#pragma GCC visibility pop
Howard Hinnant7da9b962012-01-30 16:07:00 +000025
26} // namespace __cxxabiv1
27