From patchwork Mon Nov 12 05:36:24 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Obj-C++] Found a small paste-o in parser.c? Date: Sun, 11 Nov 2012 19:36:24 -0000 From: Ed Smith-Rowland <3dw4rd@verizon.net> X-Patchwork-Id: 198320 Message-Id: <50A08AD8.2010209@verizon.net> To: Jason Merrill Cc: gcc-patches On 11/12/2012 12:05 AM, Jason Merrill wrote: > OK. > > Jason > Committed. 2012-11-12 Ed Smith-Rowland <3dw4rd@verizon.net> * parser.c (cp_parser_objc_class_ivars): Index declspecs.locations by ds_typedef rather than ds_thread. Index: parser.c =================================================================== --- parser.c (revision 193380) +++ parser.c (working copy) @@ -24650,7 +24650,7 @@ if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef)) { cp_parser_error (parser, "invalid type for instance variable"); - declspecs.locations[ds_thread] = 0; + declspecs.locations[ds_typedef] = 0; } prefix_attributes = declspecs.attributes;