changeset 959 | 157427808b40 |
parent 519 | c786cd201266 |
child 956 | 4764031c082c |
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 |