From: Russ Cox Date: Wed, 26 Oct 2011 05:19:09 +0000 (-0700) Subject: exp/types: add rune to universe X-Git-Tag: weekly.2011-10-26~16 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f4568882eb8d7638031430b8c5b1f248aa2155c0;p=gostls13.git exp/types: add rune to universe R=gri CC=golang-dev https://golang.org/cl/5295045 --- diff --git a/src/pkg/exp/types/universe.go b/src/pkg/exp/types/universe.go index 80db127829..f0435966d1 100644 --- a/src/pkg/exp/types/universe.go +++ b/src/pkg/exp/types/universe.go @@ -54,6 +54,7 @@ func init() { Bool = defType("bool") defType("byte") // TODO(gri) should be an alias for uint8 + defType("rune") // TODO(gri) should be an alias for int defType("complex64") Complex128 = defType("complex128") defType("float32")