changeset 158:19278e2f885d

Roughly sort by size to reduce padding.
author Joerg Sonnenberger <joerg@bec.de>
date Fri, 27 Feb 2015 00:23:01 +0100
parents 95fbb216e23f
children 8cef6d7227a8
files macro.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/macro.c	Fri Feb 27 00:21:31 2015 +0100
+++ b/macro.c	Fri Feb 27 00:23:01 2015 +0100
@@ -50,11 +50,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);