commit | afc76543cd50b44560f864bd4f871de62cea9d7b | [log] [tgz] |
---|---|---|
author | Mark Slee <mcslee@apache.org> | Fri Feb 09 21:55:44 2007 +0000 |
committer | Mark Slee <mcslee@apache.org> | Fri Feb 09 21:55:44 2007 +0000 |
tree | 0e7b4841647e46e5fb732678483941ba40d4ae3b | |
parent | 9f8361fee7ea26167fd0818e6de1b000f582dd5e [diff] [blame] |
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 519f20d..019fb9d 100644 --- a/compiler/cpp/src/thrifty.yy +++ b/compiler/cpp/src/thrifty.yy
@@ -876,9 +876,9 @@ } CppType: - '[' tok_cpp_type tok_literal ']' + tok_cpp_type tok_literal { - $$ = $3; + $$ = $2; } | {