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
1 changed files with 1 additions and 0 deletions

View File

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