Skip to content

Commit f17917d

Browse files
committed
remove more deprecated C++11isms
1 parent 26c4803 commit f17917d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tbb/src/tbbmalloc/proxy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,12 +439,12 @@ __TBB_ORIG_ALLOCATOR_REPLACEMENT_WRAPPER(ucrtbase);
439439
#pragma warning( disable : 4290 )
440440
#endif
441441

442-
void * operator_new(size_t sz) throw (std::bad_alloc) {
442+
void * operator_new(size_t sz) {
443443
void *res = scalable_malloc(sz);
444444
if (NULL == res) throw std::bad_alloc();
445445
return res;
446446
}
447-
void* operator_new_arr(size_t sz) throw (std::bad_alloc) {
447+
void* operator_new_arr(size_t sz) {
448448
void *res = scalable_malloc(sz);
449449
if (NULL == res) throw std::bad_alloc();
450450
return res;

0 commit comments

Comments
 (0)