changeset 1027 | 8b2b9e61d8ce |
parent 877 | 141f9c0db4a3 |
parent 988 | 8d281761dea4 |
child 1092 | dceba191c00d |
2:fd6aed4d0c63 | 4:b5a8ae3b466d |
---|---|
42 : first_item(-1), last_item(-1), first_free_item(-1) { |
42 : first_item(-1), last_item(-1), first_free_item(-1) { |
43 } |
43 } |
44 |
44 |
45 void clear() { |
45 void clear() { |
46 first_item = -1; |
46 first_item = -1; |
47 last_item = -1; |
|
47 first_free_item = -1; |
48 first_free_item = -1; |
48 items.clear(); |
49 items.clear(); |
49 cross.clear(); |
50 cross.clear(); |
50 } |
51 } |
51 |
52 |