Showing with 3 additions and 3 deletions.
  1. +2 −2 src/utils.h
  2. +1 −1 src/zone.h
@@ -488,8 +488,8 @@ class HashMap {
bool allocated;

private:
static const uint32_t size_ = 128;
static const uint32_t mask_ = 127;
static const uint32_t size_ = 32;
static const uint32_t mask_ = 31;
Item* map_[size_];
Item* head_;
Item* current_;
@@ -54,7 +54,7 @@ class Zone {

page_size_ = GetPageSize();

blocks_.Push(new ZoneBlock(page_size_));
blocks_.Push(new ZoneBlock(10 * page_size_));
}

~Zone() {