github.com/ugorji/go/codec@v1.2.13-0.20240307214044-07c54c229a5a/goversion_makemap_lt_go110.go (about) 1 // Copyright (c) 2012-2020 Ugorji Nwoke. All rights reserved. 2 // Use of this source code is governed by a MIT license found in the LICENSE file. 3 4 //go:build !go1.10 5 // +build !go1.10 6 7 package codec 8 9 import "reflect" 10 11 func makeMapReflect(t reflect.Type, size int) reflect.Value { 12 return reflect.MakeMap(t) 13 }