reserve

Adjust the capacity without changing the size

Synopsis

void
reserve(size_t n);

Defined in file <include/boost/url/url_base.hpp> on line 186

Description

This function adjusts the capacity of the container in characters, without affecting the current contents. Has no effect if `n < = this->capacity()`.

Exception Safety

Strong guarantee. Calls to allocate may throw.