1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-18 00:08:17 +00:00
Files
steve/vendor/github.com/modern-go/reflect2/go_below_19.go
Darren Shepherd c0299c1506 Initial commit
2019-08-04 10:41:32 -07:00

15 lines
244 B
Go

//+build !go1.9
package reflect2
import (
"unsafe"
)
//go:linkname makemap reflect.makemap
func makemap(rtype unsafe.Pointer) (m unsafe.Pointer)
func makeMapWithSize(rtype unsafe.Pointer, cap int) unsafe.Pointer {
return makemap(rtype)
}