smmalloc.cpp line 269 `size_t bucketSizeInBytes = GetBucketSizeInBytesByIndex(i);` gives a compiler warning because it redeclares and shadows a member variable. the program intent is unclear, so the original author should fix that.
smmalloc.cpp line 269
size_t bucketSizeInBytes = GetBucketSizeInBytesByIndex(i);gives a compiler warning because it redeclares and shadows a member variable.
the program intent is unclear, so the original author should fix that.