From: ceriel Date: Wed, 19 Dec 1990 17:32:04 +0000 (+0000) Subject: order of fields in struct was changed; PLEASE DICK, DO NOT DO THAT! X-Git-Tag: release-5-5~1314 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d7b6541a620a6b6efd1cf95dc9a7b2a823edec57;p=ack.git order of fields in struct was changed; PLEASE DICK, DO NOT DO THAT! --- diff --git a/lang/cem/cemcom.ansi/def.str b/lang/cem/cemcom.ansi/def.str index b023f4d8d..04fb00591 100644 --- a/lang/cem/cemcom.ansi/def.str +++ b/lang/cem/cemcom.ansi/def.str @@ -20,6 +20,7 @@ struct def { /* for ordinary tags */ char df_initialized; /* an initialization has been generated */ char df_alloc; /* 0, ALLOC_SEEN or ALLOC_DONE */ char df_used; /* set if idf is used */ + char df_formal_array; /* to warn if sizeof is taken */ char *df_file; /* file containing the definition */ unsigned int df_line; /* line number of the definition */ #ifdef LINT @@ -27,7 +28,6 @@ struct def { /* for ordinary tags */ int df_firstbrace; /* brace number of its first occurrence */ int df_minlevel; /* the lowest level needed for this def */ #endif LINT - char df_formal_array; /* to warn if sizeof is taken */ arith df_address; };