| 1553:7c46531efd52 | 1554:91fb10c89611 |
|---|---|
| 241 const CxAllocator *allocator, | 241 const CxAllocator *allocator, |
| 242 void *mem | 242 void *mem |
| 243 ) { | 243 ) { |
| 244 allocator->cl->free(allocator->data, mem); | 244 allocator->cl->free(allocator->data, mem); |
| 245 } | 245 } |
| 246 | |
| 247 void cxFreeDefault(void *mem) { | |
| 248 cxDefaultAllocator->cl->free(cxDefaultAllocator->data, mem); | |
| 249 } |