| Submitter | Nathan Froyd |
|---|---|
| Date | May 25, 2011, 7:56 p.m. |
| Message ID | <4DDD5F06.80504@codesourcery.com> |
| Download | mbox | patch |
| Permalink | /patch/97410/ |
| State | New |
| Headers | show |
Comments
On 05/25/2011 03:56 PM, Nathan Froyd wrote: > * cp-tree.h (struct tree_argument_pack_select): Inherit from > tree_base. OK if it passes testing. Jason
Patch
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index ada01fb..a315986 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -534,7 +534,7 @@ struct GTY (()) tree_static_assert { }; struct GTY (()) tree_argument_pack_select { - struct tree_common common; + struct tree_base base; tree argument_pack; int index; };