| 241 | |
| 242 | #if TBB_USE_CAPTURED_EXCEPTION |
| 243 | inline tbb_exception* TbbCurrentException( task_group_context*, tbb_exception* src) { return src->move(); } |
| 244 | inline tbb_exception* TbbCurrentException( task_group_context*, captured_exception* src) { return src; } |
| 245 | #else |
| 246 | // Using macro instead of an inline function here allows to avoid evaluation of the |