Bug 1264948 - Compily with Windows lack of support for noexcept keyword. r=me

This commit is contained in:
Nicolas B. Pierron 2016-06-20 13:54:08 +00:00
parent 5b033cd6c7
commit b8c0bce946

View File

@ -150,7 +150,7 @@ class AutoJitContextAlloc
struct TempObject
{
inline void* operator new(size_t nbytes, TempAllocator::Fallible view) noexcept {
inline void* operator new(size_t nbytes, TempAllocator::Fallible view) throw() {
return view.alloc.allocate(nbytes);
}
inline void* operator new(size_t nbytes, TempAllocator& alloc) {