summaryrefslogtreecommitdiff
path: root/cpp/src/IceDiscovery/LookupI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceDiscovery/LookupI.cpp')
-rw-r--r--cpp/src/IceDiscovery/LookupI.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceDiscovery/LookupI.cpp b/cpp/src/IceDiscovery/LookupI.cpp
index d4f2669ba5b..593fbe9f2b1 100644
--- a/cpp/src/IceDiscovery/LookupI.cpp
+++ b/cpp/src/IceDiscovery/LookupI.cpp
@@ -196,9 +196,9 @@ AdapterRequest::invokeWithLookup(const string& domainId, const LookupPrxPtr& loo
{
rethrow_exception(ex);
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException& e)
{
- self->_lookup->adapterRequestException(self, ex);
+ self->_lookup->adapterRequestException(self, e);
}
});
#else
@@ -235,9 +235,9 @@ ObjectRequest::invokeWithLookup(const string& domainId, const LookupPrxPtr& look
{
rethrow_exception(ex);
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException& e)
{
- self->_lookup->objectRequestException(self, ex);
+ self->_lookup->objectRequestException(self, e);
}
});
#else