addAlloc method

void addAlloc(
  1. Pointer<NativeType> arg
)
inherited

Adds a pointer to the list of allocated pointers.

Implementation

void addAlloc(Pointer arg) {
  _allocated.add(arg);
}