mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-14 04:26:32 +00:00
ca8e215cfa
close #234 * Migrate store * Migrate tests * Rewrite migrations * Init fresh DB in on step * Rm old stuff (meddler, sql files, dead code, ...)
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)
|
|
}
|