From 723f2f342f18b02501bc68dca4e47f7064963817 Mon Sep 17 00:00:00 2001 From: bitsawer Date: Mon, 24 Apr 2023 16:17:01 +0300 Subject: [PATCH] Optimize HashMap size --- core/templates/hash_map.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/templates/hash_map.h b/core/templates/hash_map.h index f3944fcd0df..0b846dfaba7 100644 --- a/core/templates/hash_map.h +++ b/core/templates/hash_map.h @@ -67,9 +67,9 @@ template >> class HashMap { public: - const uint32_t MIN_CAPACITY_INDEX = 2; // Use a prime. - const float MAX_OCCUPANCY = 0.75; - const uint32_t EMPTY_HASH = 0; + static constexpr uint32_t MIN_CAPACITY_INDEX = 2; // Use a prime. + static constexpr float MAX_OCCUPANCY = 0.75; + static constexpr uint32_t EMPTY_HASH = 0; private: Allocator element_alloc;