diff options
author | Michi Henning <michi@zeroc.com> | 2003-05-21 07:40:18 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-05-21 07:40:18 +0000 |
commit | 639318c3c26076d4fc985b27be705338ce14d001 (patch) | |
tree | 3f7d6b3bfc0945b4fa2ea59f066c67c5f0a2eddd /cpp/src/IcePack/ComponentBuilder.cpp | |
parent | Sun C++ 5.5 port (diff) | |
download | ice-639318c3c26076d4fc985b27be705338ce14d001.tar.bz2 ice-639318c3c26076d4fc985b27be705338ce14d001.tar.xz ice-639318c3c26076d4fc985b27be705338ce14d001.zip |
- Fixed bugs relating to use of ends iomanipulator.
- Fixed code generation bug for dictionaries with a key type not derived
from Object.
- Added tests for dictionary slicing.
- Restructured slicing tests to use more intuitive file names and better
directory structure.
Diffstat (limited to 'cpp/src/IcePack/ComponentBuilder.cpp')
-rw-r--r-- | cpp/src/IcePack/ComponentBuilder.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePack/ComponentBuilder.cpp b/cpp/src/IcePack/ComponentBuilder.cpp index 85757014f17..91a4da7d5ff 100644 --- a/cpp/src/IcePack/ComponentBuilder.cpp +++ b/cpp/src/IcePack/ComponentBuilder.cpp @@ -228,7 +228,7 @@ public: catch(const ObjectExistsException& lex) { ostringstream os; - os << "couldn't add the object:\n" << lex << ends; + os << "couldn't add the object:\n" << lex; ObjectDeploymentException ex; ex.reason = os.str(); @@ -238,7 +238,7 @@ public: catch(const Ice::LocalException& lex) { ostringstream os; - os << "couldn't contact the object registry:\n" << lex << ends; + os << "couldn't contact the object registry:\n" << lex; ObjectDeploymentException ex; ex.reason = os.str(); @@ -257,7 +257,7 @@ public: catch(const ObjectNotExistException& ex) { ostringstream os; - os << "couldn't remove the object:\n" << ex << ends; + os << "couldn't remove the object:\n" << ex; ObjectDeploymentException ode; ode.reason = os.str(); @@ -267,7 +267,7 @@ public: catch(const Ice::LocalException& lex) { ostringstream os; - os << "couldn't contact the object registry:\n" << lex << ends; + os << "couldn't contact the object registry:\n" << lex; ObjectDeploymentException ex; ex.reason = os.str(); |