summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ReplicaCache.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2011-10-18 22:18:35 +0200
committerBenoit Foucher <benoit@zeroc.com>2011-10-18 22:50:09 +0200
commit54a5e8d05528c379b1c3465b908c18fe5aa5d2b3 (patch)
treeda218465a52a7eaf19c44d281fc3952e40f9f59b /cpp/src/IceGrid/ReplicaCache.cpp
parentFixed ICE-4722 - Bogus communicator initialization in Freeze map (diff)
downloadice-54a5e8d05528c379b1c3465b908c18fe5aa5d2b3.tar.bz2
ice-54a5e8d05528c379b1c3465b908c18fe5aa5d2b3.tar.xz
ice-54a5e8d05528c379b1c3465b908c18fe5aa5d2b3.zip
Fixed ICE-4721 - support for OS X clang
Diffstat (limited to 'cpp/src/IceGrid/ReplicaCache.cpp')
-rw-r--r--cpp/src/IceGrid/ReplicaCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ReplicaCache.cpp b/cpp/src/IceGrid/ReplicaCache.cpp
index 53ad03eee3a..154853d2dce 100644
--- a/cpp/src/IceGrid/ReplicaCache.cpp
+++ b/cpp/src/IceGrid/ReplicaCache.cpp
@@ -40,7 +40,7 @@ ReplicaCache::add(const string& name, const ReplicaSessionIPtr& session)
Lock sync(*this);
ReplicaEntryPtr entry;
- while(entry = getImpl(name))
+ while((entry = getImpl(name)))
{
ReplicaSessionIPtr session = entry->getSession();
if(session->isDestroyed())