| 131 | /*------------------------------ helper - _destruct range */ |
| 132 | |
| 133 | __normal_call void_type dtor_iter ( |
| 134 | _write_it _head, |
| 135 | _write_it _tend |
| 136 | ) |
| 137 | { |
| 138 | for ( ; _head != _tend ; ++_head) |
| 139 | { |
| 140 | self_type::_destruct(&*_head) ; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /*------------------------------ helper - inc. allocation */ |
| 145 |
nothing calls this directly
no outgoing calls
no test coverage detected