diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-12 11:59:50 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-12 11:59:50 -0800 |
commit | e02762158e8f105fae65583fe9cfe331494b11c7 (patch) | |
tree | 21c776705d2557ddbd4762ef133201f682c7458b /system/include | |
parent | 76b5adaf554a0d636ba5eeb9bd1d25659f45167f (diff) | |
parent | ddd3820c79562079e58c7717c5f88c81aac6a379 (diff) |
Merge pull request #170 from FishingCactus/class_exception
Catching specific exception type now works
Diffstat (limited to 'system/include')
-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; }; |