Fix alignment

This commit is contained in:
Ilmir Usmanov
2014-10-13 21:42:25 +04:00
parent 38b47eaba7
commit 85ad5f8350
8 changed files with 16 additions and 17 deletions
+1 -1
View File
@@ -139,9 +139,9 @@ typedef size_t locus;
/* Represents the contents of a token. */
typedef struct
{
locus loc;
token_type type;
uint8_t uid;
locus loc;
}
__packed
token;
+3 -3
View File
@@ -22,10 +22,10 @@
typedef struct
{
tree_header t;
unsigned strict_mode:1;
opcode_counter_t opcodes_num;
linked_list opcodes;
tree_header t;
opcode_counter_t opcodes_num;
unsigned strict_mode:1;
}
__packed
scopes_tree_int;