You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix bug introduced by changes to erase
The previous change to decrease the size before destroying changed the
location of the end, which was not accounted for.
Relax concept requirements for some constructors and unify an overload.
CopyAssignable requirements have been dropped from copy constructors.
The LessI and GreaterI template overloads for `assign` have been unified into
a single overload.
Version bumped to 0.8.1.
Account for aliasing in fill insert overload.
This patch fixes the defect where the fill overload for `insert` could not
take values which were inside the container. We now create a temporary before
insertion.
Loosen restrictions on swap() and update documentation.
This patch removes constructible, assignable, and swappable requirements for
elements when using swap() when InlineCapacity is equal to 0.