Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
ec2e8591
Commit
ec2e8591
authored
Sep 29, 2010
by
Ilja Golshtein
Committed by
Martin Sustrik
Sep 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
C++ binding destructors don't throw exceptions
parent
d14be624
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
AUTHORS
AUTHORS
+1
-0
zmq.hpp
include/zmq.hpp
+2
-4
No files found.
AUTHORS
View file @
ec2e8591
...
...
@@ -18,6 +18,7 @@ Frank Denis <zeromq@pureftpd.org>
George Neill <georgen@neillnet.com>
Gonzalo Diethelm <gdiethelm@dcv.cl>
Guido Goldstein <zmq@a-nugget.de>
Ilja Golshtein <ilejncs@narod.ru>
Ivo Danihelka <ivo@danihelka.net>
Joe Thornber <joe.thornber@gmail.com>
Jon Dyte <jon@totient.co.uk>
...
...
include/zmq.hpp
View file @
ec2e8591
...
...
@@ -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
*
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment