v0.0.638 remove go:fix inline from ArrPtr
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m41s

This commit is contained in:
2026-05-08 10:10:54 +02:00
parent b3131e3ba6
commit 4f96907758
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.637"
const GoextVersion = "0.0.638"
const GoextVersionTimestamp = "2026-05-06T16:11:01+0200"
const GoextVersionTimestamp = "2026-05-08T10:10:54+0200"
-1
View File
@@ -35,7 +35,6 @@ func DblPtrNil[T any]() **T {
return &v
}
//go:fix inline
func ArrPtr[T any](v ...T) *[]T {
return new(v)
}