destroy_range(Begin+N, End);
End = Begin+N;
} else if (N > size()) {
- if (Capacity-Begin < N)
+ if (unsigned(Capacity-Begin) < N)
grow(N);
construct_range(End, Begin+N, T());
End = Begin+N;
destroy_range(Begin+N, End);
End = Begin+N;
} else if (N > size()) {
- if (Capacity-Begin < N)
+ if (unsigned(Capacity-Begin) < N)
grow(N);
construct_range(End, Begin+N, NV);
End = Begin+N;
void assign(unsigned NumElts, const T &Elt) {
clear();
- if (Capacity-Begin < NumElts)
+ if (unsigned(Capacity-Begin) < NumElts)
grow(NumElts);
End = Begin+NumElts;
construct_range(Begin, End, Elt);