From: Brad Fitzpatrick Date: Sat, 13 May 2017 15:49:15 +0000 (+0000) Subject: builtin: fix signature of the builtin function make X-Git-Tag: go1.9beta1~263 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1fcd7861e388082b59827e9ce9a7eaaea877f881;p=gostls13.git builtin: fix signature of the builtin function make Fixes #20325 Change-Id: Ie363fef73d0deae40af41ee3f4403ad18546eba6 Reviewed-on: https://go-review.googlesource.com/43460 Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot Reviewed-by: Robert Griesemer --- diff --git a/src/builtin/builtin.go b/src/builtin/builtin.go index 281de0b436..dc166837ae 100644 --- a/src/builtin/builtin.go +++ b/src/builtin/builtin.go @@ -179,7 +179,7 @@ func cap(v Type) int // Channel: The channel's buffer is initialized with the specified // buffer capacity. If zero, or the size is omitted, the channel is // unbuffered. -func make(Type, size IntegerType) Type +func make(t Type, size ...IntegerType) Type // The new built-in function allocates memory. The first argument is a type, // not a value, and the value returned is a pointer to a newly