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
37344d0b
Commit
37344d0b
authored
May 25, 2018
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: redundant old-style void argument declarations
Solution: remove
parent
12a97bb7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
err.cpp
src/err.cpp
+1
-1
err.hpp
src/err.hpp
+1
-1
random.cpp
src/random.cpp
+2
-2
router.cpp
src/router.cpp
+1
-1
socket_poller.hpp
src/socket_poller.hpp
+1
-1
No files found.
src/err.cpp
View file @
37344d0b
...
...
@@ -444,7 +444,7 @@ void zmq::print_backtrace (void)
#else
void
zmq
::
print_backtrace
(
void
)
void
zmq
::
print_backtrace
()
{
}
...
...
src/err.hpp
View file @
37344d0b
...
...
@@ -65,7 +65,7 @@ __declspec(noreturn) void zmq_abort (const char *errmsg_);
#else
void
zmq_abort
(
const
char
*
errmsg_
);
#endif
void
print_backtrace
(
void
);
void
print_backtrace
();
}
#ifdef ZMQ_HAVE_WINDOWS
...
...
src/random.cpp
View file @
37344d0b
...
...
@@ -157,12 +157,12 @@ static void manage_random (bool init_)
#endif
}
void
zmq
::
random_open
(
void
)
void
zmq
::
random_open
()
{
manage_random
(
true
);
}
void
zmq
::
random_close
(
void
)
void
zmq
::
random_close
()
{
manage_random
(
false
);
}
src/router.cpp
View file @
37344d0b
...
...
@@ -369,7 +369,7 @@ int zmq::router_t::xrecv (msg_t *msg_)
return
0
;
}
int
zmq
::
router_t
::
rollback
(
void
)
int
zmq
::
router_t
::
rollback
()
{
if
(
current_out
)
{
current_out
->
rollback
();
...
...
src/socket_poller.hpp
View file @
37344d0b
...
...
@@ -77,7 +77,7 @@ class socket_poller_t
int
wait
(
event_t
*
event_
,
int
n_events_
,
long
timeout_
);
inline
int
size
(
void
)
{
return
static_cast
<
int
>
(
items
.
size
());
};
inline
int
size
()
{
return
static_cast
<
int
>
(
items
.
size
());
};
// Return false if object is not a socket.
bool
check_tag
();
...
...
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