0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-28 07:58:14 +08:00

Merge pull request #282 from hurtonm/remove_unused_variable

remove unused variable
This commit is contained in:
Pieter Hintjens 2012-03-20 12:50:57 -07:00
commit cd57c43880
2 changed files with 0 additions and 4 deletions

View File

@ -53,7 +53,6 @@ zmq::tcp_listener_t::tcp_listener_t (io_thread_t *io_thread_,
socket_base_t *socket_, const options_t &options_) :
own_t (io_thread_, options_),
io_object_t (io_thread_),
has_file (false),
s (retired_fd),
socket (socket_)
{

View File

@ -68,9 +68,6 @@ namespace zmq
// Address to listen on.
tcp_address_t address;
// True, if the undelying file for UNIX domain socket exists.
bool has_file;
// Underlying socket.
fd_t s;