From e04f391ee01d815889785c7b02164d0e4f9a49cb Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Thu, 30 Apr 2020 22:26:53 +0000 Subject: [PATCH] go fmt --- unsafe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsafe.go b/unsafe.go index 3a5fb26..a5e2a1a 100644 --- a/unsafe.go +++ b/unsafe.go @@ -12,7 +12,7 @@ func unsafeIndex(base unsafe.Pointer, offset uintptr, elemsz uintptr, n int) uns func unsafeByteSlice(base unsafe.Pointer, offset uintptr, i, j int) []byte { // See: https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices - // + // // This memory is not allocated from C, but it is unmanaged by Go's // garbage collector and should behave similarly, and the compiler // should produce similar code. Note that this conversion allows a