mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-14 11:06:59 +01:00
fix for Sun C++ 5.8
This commit is contained in:
parent
770aedbd09
commit
c214a24f06
@ -33,4 +33,6 @@ int zmq::forwarder (socket_base_t *insocket_, socket_base_t *outsocket_)
|
|||||||
insocket_->recv (&msg, 0);
|
insocket_->recv (&msg, 0);
|
||||||
outsocket_->send (&msg, 0);
|
outsocket_->send (&msg, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -94,5 +94,7 @@ int zmq::queue (class socket_base_t *insocket_,
|
|||||||
has_response = false;
|
has_response = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,4 +33,6 @@ int zmq::streamer (socket_base_t *insocket_, socket_base_t *outsocket_)
|
|||||||
insocket_->recv (&msg, 0);
|
insocket_->recv (&msg, 0);
|
||||||
outsocket_->send (&msg, 0);
|
outsocket_->send (&msg, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user