diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-01-26 18:12:02 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-01-26 18:12:02 +0100 |
commit | b0f45efeb19159bdda8e62d0abdfc150d50b8c2b (patch) | |
tree | 1b1fb7ce858d9cfc9c43f0be4beee97ab1c76d40 /cpp/src/Ice/ObjectAdapterI.h | |
parent | Fixed JS tests to run again Ice/exceptions and optionals test with bidir (diff) | |
download | ice-b0f45efeb19159bdda8e62d0abdfc150d50b8c2b.tar.bz2 ice-b0f45efeb19159bdda8e62d0abdfc150d50b8c2b.tar.xz ice-b0f45efeb19159bdda8e62d0abdfc150d50b8c2b.zip |
Fixed ICE-6920 - Communicator::destroy is now noexcept
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.h')
-rw-r--r-- | cpp/src/Ice/ObjectAdapterI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.h b/cpp/src/Ice/ObjectAdapterI.h index b37af859e2e..855d836f471 100644 --- a/cpp/src/Ice/ObjectAdapterI.h +++ b/cpp/src/Ice/ObjectAdapterI.h @@ -57,7 +57,7 @@ public: virtual void deactivate(); virtual void waitForDeactivate(); virtual bool isDeactivated() const; - virtual void destroy(); + virtual void destroy() ICE_NOEXCEPT; virtual ObjectPrxPtr add(const ObjectPtr&, const Identity&); virtual ObjectPrxPtr addFacet(const ObjectPtr&, const Identity&, const std::string&); |