aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/hack/convert_assign.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/internal/hack/convert_assign.go b/internal/hack/convert_assign.go
deleted file mode 100644
index f1cb3d8..0000000
--- a/internal/hack/convert_assign.go
+++ /dev/null
@@ -1,17 +0,0 @@
-/*******************************************************************************
-* Copyright 2025 Stefan Majewsky <majewsky@gmx.net>
-* SPDX-License-Identifier: Apache-2.0
-* Refer to the file "LICENSE" for details.
-*******************************************************************************/
-
-package hack
-
-import (
- _ "database/sql"
- _ "unsafe"
-)
-
-//go:linkname ConvertAssign database/sql.convertAssign
-func ConvertAssign(dest, src any) error
-
-// ^ NOTE: This is needed because of <https://github.com/golang/go/issues/62146>