1
0
mirror of https://github.com/golang/go synced 2024-11-22 02:44:39 -07:00

gc: fix export of complex types

R=ken2
CC=golang-dev
https://golang.org/cl/1442042
This commit is contained in:
Russ Cox 2010-06-01 14:48:57 -07:00
parent ab215f73fc
commit cd016d7558

View File

@ -1123,6 +1123,9 @@ basicnames[] =
[TFLOAT] = "float",
[TFLOAT32] = "float32",
[TFLOAT64] = "float64",
[TCOMPLEX] = "complex",
[TCOMPLEX64] = "complex64",
[TCOMPLEX128] = "complex128",
[TBOOL] = "bool",
[TANY] = "any",
[TSTRING] = "string",