| 106 | /*------------------------------ helper - construct range */ |
| 107 | |
| 108 | __normal_call void_type ctor_iter ( |
| 109 | _write_it _head, |
| 110 | _write_it _tail |
| 111 | ) |
| 112 | { /* _def construct sequence */ |
| 113 | for ( ; _head != _tail ; ++_head) |
| 114 | { |
| 115 | self_type::construct(&*_head) ; |
| 116 | } |
| 117 | } |
| 118 | __normal_call void_type ctor_iter ( |
| 119 | _write_it _head, |
| 120 | _write_it _tend, |
nothing calls this directly
no outgoing calls
no test coverage detected