diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 19:43:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-20 19:43:09 -0800 |
commit | d806b71796493113e000b1dd5f918aaab691aba0 (patch) | |
tree | e030b46c43ec306c2e0ad2d2c5a4af8616d2dee3 /system | |
parent | df4d91df0e527cad9558fb0e967371c27fdb2401 (diff) | |
parent | e7ae95bd86e363d6c51ca00abacb6733fc0d01cb (diff) |
Merge pull request #2037 from waywardmonkeys/updates5
Updates 5
Diffstat (limited to 'system')
-rw-r--r-- | system/include/libcxx/exception | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/include/libcxx/exception b/system/include/libcxx/exception index ddd75bd4..cad802e0 100644 --- a/system/include/libcxx/exception +++ b/system/include/libcxx/exception @@ -91,8 +91,8 @@ class _LIBCPP_EXCEPTION_ABI exception { public: _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {} - virtual ~exception() _NOEXCEPT {} // XXX EMSCRIPTEN - implement in header - virtual const char* what() const _NOEXCEPT { return "std::exception"; } // XXX EMSCRIPTEN - implement in header + virtual ~exception() _NOEXCEPT; + virtual const char* what() const _NOEXCEPT; }; class _LIBCPP_EXCEPTION_ABI bad_exception |