From: Mark Slee Date: Fri, 9 Feb 2007 21:55:44 +0000 (+0000) Subject: Take brackets out of cpp_type bit X-Git-Tag: 0.2.0~1476 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=afc76543cd50b44560f864bd4f871de62cea9d7b;p=common%2Fthrift.git Take brackets out of cpp_type bit Reviewed By: aditya git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664996 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/compiler/cpp/src/thrifty.yy b/compiler/cpp/src/thrifty.yy index 519f20d0..019fb9dd 100644 --- a/compiler/cpp/src/thrifty.yy +++ b/compiler/cpp/src/thrifty.yy @@ -876,9 +876,9 @@ ListType: } CppType: - '[' tok_cpp_type tok_literal ']' + tok_cpp_type tok_literal { - $$ = $3; + $$ = $2; } | {