branch | 1.1 |
changeset 811 | bd24650d5cd2 |
parent 761 | f1398882a928 |
parent 785 | 8d281761dea4 |
2:9ef21f0dc720 | 4:bed1bbc74c4f |
---|---|
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 |