]> git.saurik.com Git - cycript.git/commitdiff
C++11 now defaults destructors to noexcept(true).
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 13 Oct 2014 12:20:02 +0000 (05:20 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 13 Oct 2014 12:20:02 +0000 (05:20 -0700)
Exception.hpp

index d30da2e0b83c9a9d3a51bd477bf798de43bfca8a..889f92fa277d4392da4d28dc90664334433b79bb 100644 (file)
@@ -122,7 +122,7 @@ struct CYJSException {
     {
     }
 
-    ~CYJSException() {
+    ~CYJSException() noexcept(false) {
         CYThrow(context_, value_);
     }