1
0
mirror of https://github.com/golang/go synced 2024-11-19 15:44:44 -07:00

runtime: add zero field to rtype

The rtype struct is meant to be a copy of reflect.rtype.  The
zero field was added to reflect.rtype in 18495:6e50725ac753.

LGTM=rsc
R=khr, rsc
CC=golang-codereviews
https://golang.org/cl/93660045
This commit is contained in:
Ian Lance Taylor 2014-05-30 07:56:05 -07:00
parent 89d46fed2c
commit aad4609c08

View File

@ -26,6 +26,7 @@ type rtype struct {
string *string
*uncommonType
ptrToThis *rtype
zero unsafe.Pointer
}
type _method struct {