Remove unused field

This commit is contained in:
Masaaki Goshima 2020-08-15 18:38:26 +09:00
parent bcc5738c6f
commit 876de765e4
1 changed files with 0 additions and 2 deletions

View File

@ -307,7 +307,6 @@ type structFieldCode struct {
key []byte
offset uintptr
anonymousKey bool
anonymous bool
nextField *opcode
end *opcode
}
@ -323,7 +322,6 @@ func (c *structFieldCode) copy(codeMap map[uintptr]*opcode) *opcode {
field := &structFieldCode{
key: c.key,
anonymousKey: c.anonymousKey,
anonymous: c.anonymous,
offset: c.offset,
}
code := (*opcode)(unsafe.Pointer(field))