CORE: increase the size value type for the Map class

master
Martin Gerhardy 2022-05-17 21:34:39 +02:00
parent 5743000d77
commit 6200d0a910
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public:
const VALUETYPE &second;
};
private:
core::PoolAllocator<KeyValue> _allocator;
core::PoolAllocator<KeyValue, uint32_t> _allocator;
core::Array<KeyValue *, BUCKETSIZE> _buckets;
HASHER _hasher;
public: