diff options
Diffstat (limited to 'ACE/ace/Svc_Handler.h')
-rw-r--r-- | ACE/ace/Svc_Handler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Svc_Handler.h b/ACE/ace/Svc_Handler.h index 8ee46fe75d2..c17e8223a95 100644 --- a/ACE/ace/Svc_Handler.h +++ b/ACE/ace/Svc_Handler.h @@ -174,8 +174,8 @@ public: /// <Svc_Handler> is allocated dynamically, which allows it to clean /// itself up correctly whether or not it's allocated statically or /// dynamically. - void *operator new (size_t n, const std::nothrow_t&) throw(); - void operator delete (void *p, const std::nothrow_t&) throw (); + void *operator new (size_t n, const std::nothrow_t&) noexcept; + void operator delete (void *p, const std::nothrow_t&) noexcept; /// This operator permits "placement new" on a per-object basis. void * operator new (size_t n, void *p); |