diff options
author | Michi Henning <michi@zeroc.com> | 2002-12-05 06:59:17 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-12-05 06:59:17 +0000 |
commit | 531bc8037fb5cebb2201605eba4677348d603ba2 (patch) | |
tree | 47e8fd6148aa639ea041926f111790eb2b58bcda /cpp/src/Ice/PluginManagerI.h | |
parent | Added AlreadyRegisteredException and NotRegisteredException. Removed (diff) | |
download | ice-531bc8037fb5cebb2201605eba4677348d603ba2.tar.bz2 ice-531bc8037fb5cebb2201605eba4677348d603ba2.tar.xz ice-531bc8037fb5cebb2201605eba4677348d603ba2.zip |
Changed the implementation of the various _kindOfObject members because
bloody VC++ can't handle initialization of static non-integral class
members :-(
Diffstat (limited to 'cpp/src/Ice/PluginManagerI.h')
-rw-r--r-- | cpp/src/Ice/PluginManagerI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/PluginManagerI.h b/cpp/src/Ice/PluginManagerI.h index 7a681c67b51..32d37473cc5 100644 --- a/cpp/src/Ice/PluginManagerI.h +++ b/cpp/src/Ice/PluginManagerI.h @@ -46,7 +46,7 @@ private: IceInternal::DynamicLibraryListPtr _libraries; std::map<std::string, PluginPtr> _plugins; - static const char * const _kindOfObject = "plug-in"; + static const char * const _kindOfObject; }; } |