mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 17:56:06 +00:00
[ATL] s/throw()/noexcept/ (#5799)
Mechanically replace throw() with noexcept.
This commit is contained in:
parent
fd1e158480
commit
d955b9321b
12 changed files with 311 additions and 311 deletions
|
@ -9,8 +9,8 @@
|
|||
// would also need to set the option 'WITH_STL'..
|
||||
// For now we just copy the definition here, under a guard..
|
||||
#ifndef _NEW
|
||||
inline void* operator new (size_t size, void* ptr) throw() { return ptr; }
|
||||
inline void operator delete (void* ptr, void* voidptr2) throw() { }
|
||||
inline void* operator new (size_t size, void* ptr) noexcept { return ptr; }
|
||||
inline void operator delete (void* ptr, void* voidptr2) noexcept { }
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue