1
0
mirror of https://github.com/golang/go synced 2024-11-19 03:34:41 -07:00

x/tools/go/ssa: remove unused field from NamedConst

Found with honnef.co/go/tools/cmd/unused.

Change-Id: I68b4af07cc64a46f5794a0e339859f4d6bc9dad1
Reviewed-on: https://go-review.googlesource.com/37605
Reviewed-by: Alan Donovan <adonovan@google.com>
This commit is contained in:
David R. Jenni 2017-03-01 12:48:21 +01:00 committed by Alan Donovan
parent 43de7a390a
commit 36a48c93a6

View File

@ -92,7 +92,6 @@ type Type struct {
type NamedConst struct { type NamedConst struct {
object *types.Const object *types.Const
Value *Const Value *Const
pos token.Pos
pkg *Package pkg *Package
} }