diff options
author | julien.hamaide <julien.hamaide@fishingcactus.com> | 2012-01-11 05:21:47 +0100 |
---|---|---|
committer | julien.hamaide <julien.hamaide@fishingcactus.com> | 2012-01-11 05:21:47 +0100 |
commit | 664caa0c759c7536bc69cb1d2e3e4f6d04e3da54 (patch) | |
tree | d25fb72456aa1d659b8802e58f7f17ed67ea25c0 /system/include/libcxx | |
parent | 4a472ca90a98b5d1d4084c0a501d6341a8cc2907 (diff) |
Catching specific exception type now works
Diffstat (limited to 'system/include/libcxx')
-rw-r--r-- | system/include/libcxx/exception | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/libcxx/exception b/system/include/libcxx/exception index 5b1db9b6..f05855b4 100644 --- a/system/include/libcxx/exception +++ b/system/include/libcxx/exception @@ -89,7 +89,7 @@ class _LIBCPP_EXCEPTION_ABI exception { public: _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {} - virtual ~exception() _NOEXCEPT; + virtual ~exception() _NOEXCEPT{} virtual const char* what() const _NOEXCEPT; }; |