Sha256: 8d0f3aea48c6eeb59ca9b51ca7dc2307e9b5fa857948044c5e8ec573134d2c65
Contents?: true
Size: 745 Bytes
Versions: 8
Compression:
Stored size: 745 Bytes
Contents
//===------------------------ cxa_aux_runtime.cpp -------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // // // This file implements the "Auxiliary Runtime APIs" // http://www.codesourcery.com/public/cxx-abi/abi-eh.html#cxx-aux //===----------------------------------------------------------------------===// #include "cxxabi.h" #include <typeinfo> namespace __cxxabiv1 { extern "C" { LIBCXXABI_NORETURN void __cxa_bad_cast (void) { throw std::bad_cast(); } LIBCXXABI_NORETURN void __cxa_bad_typeid(void) { throw std::bad_typeid(); } } // extern "C" } // abi
Version data entries
8 entries across 8 versions & 1 rubygems