|
@@ -252,7 +252,7 @@ void* AllocateFromAssimpHeap::operator new ( size_t num_bytes) {
|
|
return ::operator new(num_bytes);
|
|
return ::operator new(num_bytes);
|
|
}
|
|
}
|
|
|
|
|
|
-void* AllocateFromAssimpHeap::operator new ( size_t num_bytes, const std::nothrow_t& ) {
|
|
|
|
|
|
+void* AllocateFromAssimpHeap::operator new ( size_t num_bytes, const std::nothrow_t& ) throw() {
|
|
try {
|
|
try {
|
|
return AllocateFromAssimpHeap::operator new( num_bytes );
|
|
return AllocateFromAssimpHeap::operator new( num_bytes );
|
|
}
|
|
}
|
|
@@ -269,7 +269,7 @@ void* AllocateFromAssimpHeap::operator new[] ( size_t num_bytes) {
|
|
return ::operator new[](num_bytes);
|
|
return ::operator new[](num_bytes);
|
|
}
|
|
}
|
|
|
|
|
|
-void* AllocateFromAssimpHeap::operator new[] ( size_t num_bytes, const std::nothrow_t& ) {
|
|
|
|
|
|
+void* AllocateFromAssimpHeap::operator new[] ( size_t num_bytes, const std::nothrow_t& ) throw() {
|
|
try {
|
|
try {
|
|
return AllocateFromAssimpHeap::operator new[]( num_bytes );
|
|
return AllocateFromAssimpHeap::operator new[]( num_bytes );
|
|
}
|
|
}
|