Bug fix in cc with index

This commit is contained in:
Guillaume Damiand 2023-03-10 13:25:44 +01:00
parent 8dc54d3c62
commit 52d78763d6
1 changed files with 0 additions and 1 deletions

View File

@ -767,7 +767,6 @@ public:
void reserve(size_type n)
{
if(capacity_>=n) return;
capacity_=n;
increase_size();
}