MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / WORKAROUND_free

Method WORKAROUND_free

concurrentqueue.h:404–404  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

402 // Work around malloc/free being special macros:
403 static inline void* WORKAROUND_malloc(size_t size) { return malloc(size); }
404 static inline void WORKAROUND_free(void* ptr) { return free(ptr); }
405 static inline void* (malloc)(size_t size) { return WORKAROUND_malloc(size); }
406 static inline void (free)(void* ptr) { return WORKAROUND_free(ptr); }
407#else

Callers

nothing calls this directly

Calls 1

freeFunction · 0.85

Tested by

no test coverage detected