branch | 1.2 |
changeset 998 | 8e5c93065fd0 |
parent 877 | 141f9c0db4a3 |
parent 955 | 8d281761dea4 |
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 |