Closed jeremykubica closed 5 months ago
In order for C++ to use the move constructor for vector resizing it needs to be marked noexcept. Otherwise the vector resizing will cause a copy of the current elements.
noexcept
In order for C++ to use the move constructor for vector resizing it needs to be marked
noexcept
. Otherwise the vector resizing will cause a copy of the current elements.