We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c4803 commit f17917dCopy full SHA for f17917d
src/tbb/src/tbbmalloc/proxy.cpp
@@ -439,12 +439,12 @@ __TBB_ORIG_ALLOCATOR_REPLACEMENT_WRAPPER(ucrtbase);
439
#pragma warning( disable : 4290 )
440
#endif
441
442
-void * operator_new(size_t sz) throw (std::bad_alloc) {
+void * operator_new(size_t sz) {
443
void *res = scalable_malloc(sz);
444
if (NULL == res) throw std::bad_alloc();
445
return res;
446
}
447
-void* operator_new_arr(size_t sz) throw (std::bad_alloc) {
+void* operator_new_arr(size_t sz) {
448
449
450
0 commit comments