summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-04-25 16:56:46 +0000
committerMark Spruiell <mes@zeroc.com>2002-04-25 16:56:46 +0000
commitabd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51 (patch)
tree8cab39b91cd4c29a9653c298cb9ea045687b6efd /cpp/src
parenttemporary plug-in compatibility; removing obsolete service stuff (diff)
downloadice-abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51.tar.bz2
ice-abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51.tar.xz
ice-abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51.zip
VC++ fix
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/PluginManagerI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/PluginManagerI.cpp b/cpp/src/Ice/PluginManagerI.cpp
index 7aac61e758d..c0e6ecbf983 100644
--- a/cpp/src/Ice/PluginManagerI.cpp
+++ b/cpp/src/Ice/PluginManagerI.cpp
@@ -253,9 +253,9 @@ Ice::PluginManagerI::loadPlugin(const string& name, const string& entryPoint, co
{
Error out(_instance->logger());
out << "PluginManager: exception in factory function `" << funcName << "': " << ex.ice_name();
- SystemException ex(__FILE__, __LINE__);
- ex.error = 0;
- throw ex;
+ SystemException e(__FILE__, __LINE__);
+ e.error = 0;
+ throw e;
}
_plugins[name] = info;