| 624 | #endif |
| 625 | } |
| 626 | void __hxt_new_array(void* obj, int inSize) |
| 627 | { |
| 628 | #ifdef HXCPP_STACK_TRACE |
| 629 | hx::StackContext *stack = hx::StackContext::getCurrent(); |
| 630 | if (stack->mTelemetry) |
| 631 | stack->mTelemetry->HXTAllocation(obj, inSize, (const char *)"Array"); |
| 632 | #endif |
| 633 | } |
| 634 | void __hxt_new_hash(void* obj, int inSize) |
| 635 | { |
| 636 | #ifdef HXCPP_STACK_TRACE |
no test coverage detected