Mercurial > ~dholland > hg > tradcpp > index.cgi
changeset 171:5922e6ca6b80
Revert gratuitous reordering of struct macro contents.
(If a small amount of structure padding appears, who cares? It's more
important that related elements are grouped together.)
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 02:05:29 -0400 |
parents | 2ee7db420643 |
children | 3e7e696fe558 |
files | macro.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/macro.c Fri Jun 12 02:02:38 2015 -0400 +++ b/macro.c Fri Jun 12 02:05:29 2015 -0400 @@ -51,11 +51,11 @@ struct macro { struct place defplace; struct place expansionplace; + unsigned hash; + char *name; + bool hasparams; struct stringarray params; struct expansionitemarray expansion; - char *name; - unsigned hash; - bool hasparams; bool inuse; }; DECLARRAY(macro, static UNUSED);