gfortran.h (struct gfc_expr): Add missing "struct" qualifier for member base_expr.
authorHans-Peter Nilsson <hp@axis.com>
Tue, 3 Jan 2012 04:49:22 +0000 (04:49 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Tue, 3 Jan 2012 04:49:22 +0000 (04:49 +0000)
* gfortran.h (struct gfc_expr): Add missing "struct"
qualifier for member base_expr.

From-SVN: r182826

gcc/fortran/ChangeLog
gcc/fortran/gfortran.h

index 02c0def3cda913bd5c9b384c37f0ef959769fa7b..d752513e999ad229b1cbc285b77e2be98966824b 100644 (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
index 5923069996b933a058cea52fbde47817a61b9550..e8a3de0501197c735928f8f774e24932d662959e 100644 (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.  */