Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e5de778

Browse files
committed
Back out the previous change. It doesn't save any space on 64-bit
platforms.
1 parent 73d6692 commit e5de778

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Include/node.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ extern "C" {
88
#endif
99

1010
typedef struct _node {
11+
short n_type;
1112
char *n_str;
12-
struct _node *n_child;
1313
int n_lineno;
1414
int n_nchildren;
15-
short n_type;
15+
struct _node *n_child;
1616
} node;
1717

1818
PyAPI_FUNC(node *) PyNode_New(int type);

0 commit comments

Comments
 (0)