diff options
author | Ilja Golshtein <ilejncs@narod.ru> | 2010-09-29 10:09:03 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-09-30 09:11:51 +0200 |
commit | ec2e85919e4a34a313e6d0df84cc421bc9682ad8 (patch) | |
tree | fcea530614eb6da7a788b9a62666c842acbbd1a3 /include | |
parent | d14be62499478f31cf641399982ecdf4f6f158c4 (diff) |
C++ binding destructors don't throw exceptions
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/zmq.hpp b/include/zmq.hpp index 86ffff6..3fb5a79 100644 --- a/include/zmq.hpp +++ b/include/zmq.hpp @@ -94,8 +94,7 @@ namespace zmq inline ~message_t () { int rc = zmq_msg_close (this); - if (rc != 0) - throw error_t (); + assert (rc == 0); } inline void rebuild () @@ -202,8 +201,7 @@ namespace zmq inline ~socket_t () { int rc = zmq_close (ptr); - if (rc != 0) - throw error_t (); + assert (rc == 0); } inline operator void* () |