changeset 1089 | 552e3d1242c6 |
parent 519 | c786cd201266 |
child 989 | 38e1d4383262 |
1:b3c5c1ea4067 | 3:354b1f2b9b0b |
---|---|
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 |