Update smallmap.h

This commit is contained in:
blueloveTH 2024-06-16 00:50:00 +08:00
parent 72215f1a05
commit e7fe38cdf7

View File

@ -45,7 +45,7 @@ void SMALLMAP_METHOD(clear)(SMALLMAP* self);
void SMALLMAP_METHOD(ctor)(SMALLMAP* self) {
c11_vector__ctor(self, sizeof(KV));
c11_vector__reserve(self, 8);
c11_vector__reserve(self, 4);
}
void SMALLMAP_METHOD(dtor)(SMALLMAP* self) {