| 383 | : small_vector_template_common<T>(Size) {} |
| 384 | |
| 385 | static void destroy_range(T *S, T *E) { |
| 386 | while (S != E) { |
| 387 | --E; |
| 388 | E->~T(); |
| 389 | } |
| 390 | } |
| 391 | |
| 392 | /// Move the range [I, E) into the uninitialized memory starting with "Dest", |
| 393 | /// constructing elements as needed. |
no outgoing calls
no test coverage detected