aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2014-01-20 15:03:35 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-01-21 10:40:47 +0700
commite7ae95bd86e363d6c51ca00abacb6733fc0d01cb (patch)
treec4080c38043a205edca3d850be4ea74e0901a9f0 /system
parent9339aabb90aeb8999fae8e2761142d94e0877b3e (diff)
Move workaround for emscripten from include/exception to library.js.
Diffstat (limited to 'system')
-rw-r--r--system/include/libcxx/exception4
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