free static method

void free(
  1. Pointer<AlignedStruct> ptr
)

Frees the allocated memory for an AlignedStruct instance

Implementation

static void free(Pointer<AlignedStruct> ptr) {
  calloc.free(ptr);
}