Remove unneeded generics.

This commit is contained in:
Nuno Cruces
2025-07-10 13:05:38 +01:00
parent 33ea564f38
commit 36a62264f9
4 changed files with 6 additions and 27 deletions

View File

@@ -8,6 +8,6 @@ import "github.com/ncruces/go-sqlite3/internal/util"
// [Value.Pointer], or [Context.ResultPointer].
//
// https://sqlite.org/bindptr.html
func Pointer[T any](value T) any {
return util.Pointer[T]{Value: value}
func Pointer(value any) any {
return util.Pointer{Value: value}
}