diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-07-24 12:57:23 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-07-24 12:57:23 -0230 |
commit | 037f04744c909468e009586944e3d310a317bcea (patch) | |
tree | 1250116e9cbc3ba2eae5f48767316c9b106f226a /cpp/src/IceSSL/PluginI.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2311 (diff) | |
download | ice-037f04744c909468e009586944e3d310a317bcea.tar.bz2 ice-037f04744c909468e009586944e3d310a317bcea.tar.xz ice-037f04744c909468e009586944e3d310a317bcea.zip |
Fixed compiler warning on Sun
Diffstat (limited to 'cpp/src/IceSSL/PluginI.cpp')
-rw-r--r-- | cpp/src/IceSSL/PluginI.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/PluginI.cpp b/cpp/src/IceSSL/PluginI.cpp index 30f92d03015..f9b140cb67e 100644 --- a/cpp/src/IceSSL/PluginI.cpp +++ b/cpp/src/IceSSL/PluginI.cpp @@ -322,4 +322,6 @@ IceSSL::getConnectionInfo(const ConnectionPtr& connection) os << "couldn't get connection information:\n" << ex << endl; throw ConnectionInvalidException(__FILE__, __LINE__, os.str()); } + + return ConnectionInfo(); // Required to prevent compiler warning on Solaris. } |