MCPcopy Create free account
hub / github.com/apache/madlib / ArrayDeleter

Class ArrayDeleter

src/utils/memory.hpp:17–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15
16template<typename T>
17struct ArrayDeleter {
18 void operator()(T *p) {
19 delete [] p;
20 }
21};
22
23template <class T>
24struct NoDeleter {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected