1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:24:42 -07:00

gc: fix comments in go.h

Trivial fix to '// n' comments against etype enum in go.h, as these have
got out of sync.

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/4240097
This commit is contained in:
Lorenzo Stoakes 2011-03-09 08:35:18 -08:00 committed by Robert Griesemer
parent f0ab14647a
commit fe8639a9fb

View File

@ -441,20 +441,20 @@ enum
TCOMPLEX64, // 12
TCOMPLEX128,
TFLOAT32, // 15
TFLOAT32, // 14
TFLOAT64,
TBOOL, // 18
TBOOL, // 16
TPTR32, TPTR64, // 19
TPTR32, TPTR64, // 17
TFUNC, // 21
TFUNC, // 19
TARRAY,
T_old_DARRAY,
TSTRUCT, // 24
TSTRUCT, // 22
TCHAN,
TMAP,
TINTER, // 27
TINTER, // 25
TFORW,
TFIELD,
TANY,
@ -462,7 +462,7 @@ enum
TUNSAFEPTR,
// pseudo-types for literals
TIDEAL, // 33
TIDEAL, // 31
TNIL,
TBLANK,