small_vector icon indicating copy to clipboard operation
small_vector copied to clipboard

noexcept violation

Open schaumb opened this issue 4 years ago • 0 comments

std::vector::reserve is not noexcept, It can throw std::length_error and std::bad_alloc. small_vector() and small_vector(small_vector&& other) are marked with noexcept but uses the reserve function

schaumb avatar Nov 23 '21 16:11 schaumb