Compare commits

..

1 Commits

Author SHA1 Message Date
Mikescher 4f96907758 v0.0.638 remove go:fix inline from ArrPtr
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m41s
2026-05-08 10:10:54 +02:00
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
package goext 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 return &v
} }
//go:fix inline
func ArrPtr[T any](v ...T) *[]T { func ArrPtr[T any](v ...T) *[]T {
return new(v) return new(v)
} }