| 96 | } |
| 97 | |
| 98 | extern "C" void free(void* data) { |
| 99 | #if defined(Y_COVER_PTR) |
| 100 | NBalloc::Free(UncoverPtr(data)); |
| 101 | #else |
| 102 | NBalloc::Free(data); |
| 103 | #endif |
| 104 | } |
| 105 | |
| 106 | #if defined(USE_INTELCC) || defined(_darwin_) || defined(_freebsd_) || defined(_STLPORT_VERSION) |
| 107 | #define OP_THROWNOTHING noexcept |