Skip to content

Commit b4f066d

Browse files
committed
Include/node.h: make some fields short to save space during
parsing
1 parent b0f3c82 commit b4f066d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Include/node.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3131
/* Parse tree node interface */
3232

3333
typedef struct _node {
34-
int n_type;
34+
short n_type;
3535
char *n_str;
36-
int n_lineno;
37-
int n_nchildren;
36+
short n_lineno;
37+
short n_nchildren;
3838
struct _node *n_child;
3939
} node;
4040

0 commit comments

Comments
 (0)