0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-09-22 10:43:39 -04:00

preproc: Align members in structures

For easier reading

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov
2011-07-17 20:20:14 +04:00
parent d57a031616
commit f30cf73533

View File

@@ -212,7 +212,8 @@ struct ExpDef {
ExpDef *next; /* next in hash table */ ExpDef *next; /* next in hash table */
enum pp_exp_type type; /* expansion type */ enum pp_exp_type type; /* expansion type */
char *name; /* definition name */ char *name; /* definition name */
int nparam_min, nparam_max; int nparam_min;
int nparam_max;
bool casesense; bool casesense;
bool plus; /* is the last parameter greedy? */ bool plus; /* is the last parameter greedy? */
bool nolist; /* is this expansion listing-inhibited? */ bool nolist; /* is this expansion listing-inhibited? */
@@ -274,7 +275,8 @@ struct Include {
Cond *conds; Cond *conds;
ExpInv *expansion; ExpInv *expansion;
char *fname; char *fname;
int lineno, lineinc; int lineno;
int lineinc;
int mmac_depth; int mmac_depth;
}; };