diff options
author | Marc Laukien <marc@zeroc.com> | 2003-01-15 17:09:27 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-01-15 17:09:27 +0000 |
commit | 55dd48735c59cb92e8b5789665396959053723ed (patch) | |
tree | 24207c670c660a5ab327b9c776308408e84993a9 /cpp/src/IceBox/ServiceManagerI.cpp | |
parent | fix (diff) | |
download | ice-55dd48735c59cb92e8b5789665396959053723ed.tar.bz2 ice-55dd48735c59cb92e8b5789665396959053723ed.tar.xz ice-55dd48735c59cb92e8b5789665396959053723ed.zip |
fixes
Diffstat (limited to 'cpp/src/IceBox/ServiceManagerI.cpp')
-rw-r--r-- | cpp/src/IceBox/ServiceManagerI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceBox/ServiceManagerI.cpp b/cpp/src/IceBox/ServiceManagerI.cpp index 2356eba5eb8..f9bce94e7e1 100644 --- a/cpp/src/IceBox/ServiceManagerI.cpp +++ b/cpp/src/IceBox/ServiceManagerI.cpp @@ -353,7 +353,7 @@ IceBox::ServiceManagerI::stop(const string& service) ServiceInfo info = r->second; _services.erase(r); - std::auto_ptr< FailureException> failureEx; + std::auto_ptr<FailureException> failureEx; try { @@ -392,7 +392,7 @@ IceBox::ServiceManagerI::stop(const string& service) // // Release the service, the service communicator and then the - // library. The order is important, the service must be release + // library. The order is important, the service must be released // before destroying the communicator so that the communicator // leak detector doesn't report potential leaks, and the // communicator must be destroyed before the library is released |