diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-04-25 16:56:46 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-04-25 16:56:46 +0000 |
commit | abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51 (patch) | |
tree | 8cab39b91cd4c29a9653c298cb9ea045687b6efd /cpp/src/Ice/PluginManagerI.cpp | |
parent | temporary plug-in compatibility; removing obsolete service stuff (diff) | |
download | ice-abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51.tar.bz2 ice-abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51.tar.xz ice-abd5cfdd4ede4d6fdb87a90b3f72fd143ee69e51.zip |
VC++ fix
Diffstat (limited to 'cpp/src/Ice/PluginManagerI.cpp')
-rw-r--r-- | cpp/src/Ice/PluginManagerI.cpp | 6 |
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; |