| 123 | } |
| 124 | |
| 125 | __normal_call void_type copy_data ( |
| 126 | size_type _size, |
| 127 | data_type const& _dsrc |
| 128 | ) |
| 129 | { /* push _size copies onto list */ |
| 130 | for ( ; _size-- != 0; ) |
| 131 | push_head(_dsrc); |
| 132 | } |
| 133 | |
| 134 | public : |
| 135 |
nothing calls this directly
no outgoing calls
no test coverage detected