summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/LocatorRegistryI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-11-28 08:58:39 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-11-28 08:58:39 +0000
commita686b3fbc49a85a82b44aabc93861ddf39790fdf (patch)
treed88d844ee543823a39f1415ba92dff901fc796ce /cpp/src/IceGrid/LocatorRegistryI.cpp
parentCleanup (diff)
downloadice-a686b3fbc49a85a82b44aabc93861ddf39790fdf.tar.bz2
ice-a686b3fbc49a85a82b44aabc93861ddf39790fdf.tar.xz
ice-a686b3fbc49a85a82b44aabc93861ddf39790fdf.zip
Win32 fix
Diffstat (limited to 'cpp/src/IceGrid/LocatorRegistryI.cpp')
-rw-r--r--cpp/src/IceGrid/LocatorRegistryI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/LocatorRegistryI.cpp b/cpp/src/IceGrid/LocatorRegistryI.cpp
index ac2bff1828a..1c48a9cd1bb 100644
--- a/cpp/src/IceGrid/LocatorRegistryI.cpp
+++ b/cpp/src/IceGrid/LocatorRegistryI.cpp
@@ -295,11 +295,11 @@ LocatorRegistryI::setAdapterDirectProxy(const AMI_Adapter_setDirectProxyPtr& ami
amiCB->ice_response();
return;
}
- catch(const AdapterExistsException& ex)
+ catch(const AdapterExistsException&)
{
// Continue
}
- catch(const AdapterNotExistException& ex)
+ catch(const AdapterNotExistException&)
{
throw Ice::AdapterNotFoundException(); // Dynamic registration not allowed on the master.
}