reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
358 if (N < this->size()) { 359 this->destroy_range(this->begin()+N, this->end()); 360 this->set_size(N); 361 } else if (N > this->size()) { 362 if (this->capacity() < N) 363 this->grow(N); 364 std::uninitialized_fill(this->end(), this->begin()+N, NV); 365 this->set_size(N);