diff options
Diffstat (limited to 'gcc/tree-affine.h')
-rw-r--r-- | gcc/tree-affine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-affine.h b/gcc/tree-affine.h index 23c6096..2164820 100644 --- a/gcc/tree-affine.h +++ b/gcc/tree-affine.h @@ -56,7 +56,7 @@ public: The coefficients are always sign extended from the precision of TYPE (regardless of signedness of TYPE). */ - struct aff_comb_elt elts[MAX_AFF_ELTS]; + class aff_comb_elt elts[MAX_AFF_ELTS]; /* Remainder of the expression. Usually NULL, used only if there are more than MAX_AFF_ELTS elements. Type of REST will be either sizetype for @@ -64,7 +64,7 @@ public: tree rest; }; -struct name_expansion; +class name_expansion; void aff_combination_const (aff_tree *, tree, const poly_widest_int &); void aff_combination_elt (aff_tree *, tree, tree); |