Give gitObject.Free a pointer-receiver #16
Loading…
Reference in New Issue
No description provided.
Delete Branch "pointerrecv"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is needed to get runtime.SetFinalizer to work, which
expects a pointer-receiver. Without it the runtime will crash, when it
tries to garbage-collect an object.
Gah, thank you. You're very much right.