Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions new
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ namespace std{
}


_UCXXEXPORT void* operator new(std::size_t numBytes) throw(std::bad_alloc);
_UCXXEXPORT void* operator new(std::size_t numBytes) noexcept(false);
_UCXXEXPORT void operator delete(void* ptr) throw();

_UCXXEXPORT void* operator new[](std::size_t numBytes) throw(std::bad_alloc);
_UCXXEXPORT void* operator new[](std::size_t numBytes) noexcept(false);
_UCXXEXPORT void operator delete[](void * ptr) throw();

#ifndef NO_NOTHROW
Expand Down