| 113 | #endif // _WIN32||_WIN64 |
| 114 | |
| 115 | void throw_bad_last_alloc_exception_v4() { |
| 116 | throw_exception_v4(eid_bad_last_alloc); |
| 117 | } |
| 118 | |
| 119 | void throw_exception_v4 ( exception_id eid ) { |
| 120 | __TBB_ASSERT ( eid > 0 && eid < eid_max, "Unknown exception ID" ); |
nothing calls this directly
no test coverage detected