summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Connection.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2003-04-09 15:03:35 +0000
committerBernard Normier <bernard@zeroc.com>2003-04-09 15:03:35 +0000
commit3cbc97486f02fdd25a532af96146aa956e51e26d (patch)
tree49dadb69954c3c3ef6ce87a9320b8c5c7bb714b8 /cpp/src/Ice/Connection.cpp
parentadding Strategy.ice (diff)
downloadice-3cbc97486f02fdd25a532af96146aa956e51e26d.tar.bz2
ice-3cbc97486f02fdd25a532af96146aa956e51e26d.tar.xz
ice-3cbc97486f02fdd25a532af96146aa956e51e26d.zip
Solaris/Sun C++ 5.4 port
Diffstat (limited to 'cpp/src/Ice/Connection.cpp')
-rw-r--r--cpp/src/Ice/Connection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Connection.cpp b/cpp/src/Ice/Connection.cpp
index 21a74876acd..c26a7258c03 100644
--- a/cpp/src/Ice/Connection.cpp
+++ b/cpp/src/Ice/Connection.cpp
@@ -449,7 +449,7 @@ IceInternal::Connection::sendRequest(Outgoing* out, bool oneway)
//
if(!_endpoint->datagram() && !oneway)
{
- _requestsHint = _requests.insert(_requests.end(), make_pair(requestId, out));
+ _requestsHint = _requests.insert(_requests.end(), pair<const Int, Outgoing*>(requestId, out));
}
if(_acmTimeout > 0)
@@ -547,7 +547,7 @@ IceInternal::Connection::sendAsyncRequest(const OutgoingAsyncPtr& out)
//
// Only add to the request map if there was no exception.
//
- _asyncRequestsHint = _asyncRequests.insert(_asyncRequests.end(), make_pair(requestId, out));
+ _asyncRequestsHint = _asyncRequests.insert(_asyncRequests.end(), pair<const Int, OutgoingAsyncPtr>(requestId, out));
if(_acmTimeout > 0)
{