From afc76543cd50b44560f864bd4f871de62cea9d7b Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Fri, 9 Feb 2007 21:55:44 +0000 Subject: [PATCH] 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 --- compiler/cpp/src/thrifty.yy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } | { -- 2.17.1