c33ee79f
by Yuxuan Shui at 2025-07-01T21:47:38+02:00
msvcp90: Fix vector_base_v4 allocation sizes.
Before this commit, this->allocator appears to be given number of bytes as
allocation size in msvcp90/details.c. But in msvcp120/tests/msvcp120.c, the
provided allocator concurrent_vector_int_alloc, this size is multiplied by
sizeof(int) again.
A small change to log the size from concurrent_vector_int_alloc shows our size
is exactly 4x native. I think that's enough evidence that the size here is meant
to be No. elements.