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

Version Path
webruby-0.2.7 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.2.5 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.2.4 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.2.2 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.2.1 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.1.2 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.1.1 modules/emscripten/system/lib/libcxxabi/src/exception.cpp
webruby-0.1.0 modules/emscripten/system/lib/libcxxabi/src/exception.cpp