mirror of
https://github.com/containers/skopeo.git
synced 2025-09-17 23:39:13 +00:00
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.36.0 to 1.37.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/main/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.36.0...v1.37.0) --- updated-dependencies: - dependency-name: github.com/containers/storage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
378 B
Go
18 lines
378 B
Go
//+build go1.9
|
|
|
|
package reflect2
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
//go:linkname resolveTypeOff reflect.resolveTypeOff
|
|
func resolveTypeOff(rtype unsafe.Pointer, off int32) unsafe.Pointer
|
|
|
|
//go:linkname makemap reflect.makemap
|
|
func makemap(rtype unsafe.Pointer, cap int) (m unsafe.Pointer)
|
|
|
|
func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer {
|
|
return makemap(rtype, cap)
|
|
}
|