Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_string::reserve

Reserves storage.

Synopsis
void
reserve(
    std::size_t n);
Description

This actually just throws an exception if n > N, otherwise does nothing since the storage is fixed.


PrevUpHomeNext