mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-10 07:56:09 +00:00
Merge pull request #342 from ipechorin/master
Solaris/SunCC build fix: could not find a match for std::multimap<...>::insert(std::pair<...,...>)
This commit is contained in:
commit
65b6351e4a
@ -547,7 +547,7 @@ void zmq::socket_base_t::add_endpoint (const char *addr_, own_t *endpoint_)
|
||||
{
|
||||
// Activate the session. Make it a child of this socket.
|
||||
launch_child (endpoint_);
|
||||
endpoints.insert (std::make_pair (std::string (addr_), endpoint_));
|
||||
endpoints.insert (endpoints_t::value_type (std::string (addr_), endpoint_));
|
||||
}
|
||||
|
||||
int zmq::socket_base_t::term_endpoint (const char *addr_)
|
||||
|
Loading…
x
Reference in New Issue
Block a user