search for: 55ff1b8a

Displaying 1 result from an estimated 1 matches for "55ff1b8a".

2023 Aug 11
2
[libnbd PATCH] golang: Bump minimum Go version to 1.17
...oLang.ml | 8 ++++---- README.md | 2 +- golang/configure/go.mod | 4 ++-- golang/configure/test.go | 11 +++++++++++ golang/go.mod | 4 ++-- 5 files changed, 20 insertions(+), 9 deletions(-) diff --git a/generator/GoLang.ml b/generator/GoLang.ml index 73df5254..55ff1b8a 100644 --- a/generator/GoLang.ml +++ b/generator/GoLang.ml @@ -517,10 +517,10 @@ let func copy_uint32_array(entries *C.uint32_t, count C.size_t) []uint32 { ret := make([]uint32, int(count)) - // See https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices - // TODO: Use un...