gfortran.h (struct gfc_expr): Add missing "struct" qualifier for member base_expr.

* gfortran.h (struct gfc_expr): Add missing "struct"
	qualifier for member base_expr.

From-SVN: r182826
This commit is contained in:
Hans-Peter Nilsson 2012-01-03 04:49:22 +00:00 committed by Hans-Peter Nilsson
parent e237144a6b
commit 32a9b8e01a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-01-03 Hans-Peter Nilsson <hp@axis.com>
* gfortran.h (struct gfc_expr): Add missing "struct"
qualifier for member base_expr.
2012-01-02 Paul Thomas <pault@gcc.gnu.org>
PR fortran/51529

View File

@ -1699,7 +1699,7 @@ typedef struct gfc_expr
/* Used to store the base expression in component calls, when the expression
is not a variable. */
gfc_expr *base_expr;
struct gfc_expr *base_expr;
/* is_boz is true if the integer is regarded as BOZ bitpatten and is_snan
denotes a signalling not-a-number. */