Sha256: e461a331790f5941988f8e5d4c7e72a1f5600a18f8b36bec5ff360f9409ed38d
Contents?: true
Size: 754 Bytes
Versions: 8
Compression:
Stored size: 754 Bytes
Contents
//===---------------------------- exception.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. // //===----------------------------------------------------------------------===// #include <exception> #pragma GCC visibility push(default) namespace std { // exception exception::~exception() _NOEXCEPT { } const char* exception::what() const _NOEXCEPT { return "std::exception"; } // bad_exception bad_exception::~bad_exception() _NOEXCEPT { } const char* bad_exception::what() const _NOEXCEPT { return "std::bad_exception"; } } // std #pragma GCC visibility pop
Version data entries
8 entries across 8 versions & 1 rubygems