summaryrefslogtreecommitdiff
path: root/TAO/tao/Bounded_Array_Sequence_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-12-12 09:57:46 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2022-12-12 09:57:46 +0100
commit0ddf6649d679123b281879416b46e42933b82a21 (patch)
treee660782e705c3efcf952398afe2aa86e54697974 /TAO/tao/Bounded_Array_Sequence_T.h
parent7f58353152673a611a86843b1db6f9453675d087 (diff)
downloadATCD-0ddf6649d679123b281879416b46e42933b82a21.tar.gz
Make use of noexcept instead of throw()
* ACE/ace/Auto_Functor.h: * ACE/ace/Local_Name_Space_T.cpp: * ACE/ace/Svc_Handler.cpp: * ACE/ace/Svc_Handler.h: * ACE/ace/config-lite.h: * ACE/ace/config-macros.h: * ACE/examples/DLL/Newsweek.cpp: * ACE/examples/DLL/Newsweek.h: * ACE/examples/DLL/Today.cpp: * ACE/examples/DLL/Today.h: * ACE/examples/Shared_Malloc/test_persistence.cpp: * ACE/tests/DLL_Test_Impl.cpp: * ACE/tests/DLL_Test_Impl.h: * ACE/tests/Dynamic_Test.cpp: * TAO/orbsvcs/orbsvcs/ESF/ESF_Peer_Admin.h: * TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Admin.h: * TAO/orbsvcs/orbsvcs/Event/EC_Channel_Destroyer.cpp: * TAO/orbsvcs/orbsvcs/Event/EC_Channel_Destroyer.h: * TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp: * TAO/orbsvcs/orbsvcs/Event/EC_ProxySupplier.h: * TAO/orbsvcs/orbsvcs/Event/EC_Proxy_Disconnector.cpp: * TAO/orbsvcs/orbsvcs/Event/EC_Proxy_Disconnector.h: * TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/ScopeGuard.h: * TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/TestBroadcaster.cpp: * TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/TestBroadcaster.h: * TAO/tao/Asynch_Reply_Dispatcher_Base.h: * TAO/tao/Asynch_Reply_Dispatcher_Base.inl: * TAO/tao/Bounded_Array_Sequence_T.h: * TAO/tao/Bounded_Basic_String_Sequence_T.h: * TAO/tao/Bounded_Object_Reference_Sequence_T.h: * TAO/tao/Bounded_Value_Sequence_T.h: * TAO/tao/Generic_Sequence_T.h: * TAO/tao/Messaging/AMH_Response_Handler.cpp: * TAO/tao/Messaging/AMH_Response_Handler.h: * TAO/tao/PortableServer/Servant_var.cpp: * TAO/tao/PortableServer/Servant_var.h: * TAO/tao/PortableServer/Servant_var.inl: * TAO/tao/Unbounded_Array_Sequence_T.h: * TAO/tao/Unbounded_Basic_String_Sequence_T.h: * TAO/tao/Unbounded_Object_Reference_Sequence_T.h: * TAO/tao/Unbounded_Octet_Sequence_T.h: * TAO/tao/Unbounded_Value_Sequence_T.h: * TAO/tao/Utils/Implicit_Deactivator.cpp: * TAO/tao/Utils/Implicit_Deactivator.h: * TAO/tao/Utils/ORB_Destroyer.cpp: * TAO/tao/Utils/ORB_Destroyer.h: * TAO/tao/Utils/PolicyList_Destroyer.cpp: * TAO/tao/Utils/PolicyList_Destroyer.h: * TAO/tao/Valuetype/Bounded_Valuetype_Sequence_T.h: * TAO/tao/Valuetype/Unbounded_Valuetype_Sequence_T.h: * TAO/tests/Bug_2936_Regression/PersistentPOA.cpp: * TAO/tests/Bug_2936_Regression/PersistentPOA.h: * TAO/tests/Bug_3251_Regression/PersistentPoa.cpp: * TAO/tests/Bug_3251_Regression/PersistentPoa.h: * TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.cpp: * TAO/tests/ORB_Local_Config/Bug_2612/DllOrb.h: * TAO/tests/POA/DSI/Database_i.cpp: * TAO/tests/POA/DSI/Database_i.h: * TAO/utils/wxNamingViewer/wxAutoDialog.h:
Diffstat (limited to 'TAO/tao/Bounded_Array_Sequence_T.h')
-rw-r--r--TAO/tao/Bounded_Array_Sequence_T.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Bounded_Array_Sequence_T.h b/TAO/tao/Bounded_Array_Sequence_T.h
index d52a4db56cc..dc2c6b22f2b 100644
--- a/TAO/tao/Bounded_Array_Sequence_T.h
+++ b/TAO/tao/Bounded_Array_Sequence_T.h
@@ -72,7 +72,7 @@ public:
inline value_type * get_buffer(CORBA::Boolean orphan = false) {
return impl_.get_buffer(orphan);
}
- inline void swap(bounded_array_sequence & rhs) throw() {
+ inline void swap(bounded_array_sequence & rhs) noexcept {
impl_.swap(rhs.impl_);
}
static value_type * allocbuf(CORBA::ULong maximum) {