mirror of
https://github.com/jakejarvis/npqueue.git
synced 2026-07-26 15:16:05 -04:00
gin router
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
//+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)
|
||||
}
|
||||
Reference in New Issue
Block a user