1
0
mirror of https://github.com/rancher/norman.git synced 2025-08-28 11:50:34 +00:00
norman/vendor/github.com/modern-go/reflect2/go_below_19.go
2018-07-11 16:44:45 -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)
}