MCPcopy Create free account
hub / github.com/WiseLibs/better-sqlite3 / FREE_ARRAY

Function FREE_ARRAY

src/util/helpers.cpp:188–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186
187// Deallocates an array, without calling destructors.
188template<class T> inline void FREE_ARRAY(T* array_pointer) {
189 ::operator delete[](array_pointer);
190}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected