diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-10-16 17:17:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-10-16 17:17:16 +0000 |
commit | 01e4aecea8435f75dfb69c3b5fee1c309a9715b0 (patch) | |
tree | 10738cbff22a4b15a8c518f73ad342c74d67753b /gcc/go/gofrontend/parse.h | |
parent | d13fc1ed98037f25d3f1af9718e28ef8b22f1ac5 (diff) | |
download | gcc-01e4aecea8435f75dfb69c3b5fee1c309a9715b0.zip gcc-01e4aecea8435f75dfb69c3b5fee1c309a9715b0.tar.gz gcc-01e4aecea8435f75dfb69c3b5fee1c309a9715b0.tar.bz2 |
compiler: Parse receiver as a single parameter.
Fixes issue 8288.
From-SVN: r216340
Diffstat (limited to 'gcc/go/gofrontend/parse.h')
-rw-r--r-- | gcc/go/gofrontend/parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/parse.h b/gcc/go/gofrontend/parse.h index 3a7bbd5..86698a1 100644 --- a/gcc/go/gofrontend/parse.h +++ b/gcc/go/gofrontend/parse.h @@ -179,7 +179,7 @@ class Parse Function_type* signature(Typed_identifier*, Location); bool parameters(Typed_identifier_list**, bool* is_varargs); Typed_identifier_list* parameter_list(bool* is_varargs); - void parameter_decl(bool, Typed_identifier_list*, bool*, bool*); + void parameter_decl(bool, Typed_identifier_list*, bool*, bool*, bool*); bool result(Typed_identifier_list**); Location block(); Type* interface_type(); |