Commit aad4609c authored by Ian Lance Taylor's avatar Ian Lance Taylor

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
parent 89d46fed
...@@ -26,6 +26,7 @@ type rtype struct { ...@@ -26,6 +26,7 @@ type rtype struct {
string *string string *string
*uncommonType *uncommonType
ptrToThis *rtype ptrToThis *rtype
zero unsafe.Pointer
} }
type _method struct { type _method struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment