mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2bef937507
full diff: https://github.com/coreos/etcd/compare/v3.3.12...v3.3.25 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
14 lines
257 B
Go
14 lines
257 B
Go
//+build go1.9
|
|
|
|
package reflect2
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
//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)
|
|
}
|