███████████: alloc fill memory with zeros at every call [#METR-11892]

This commit is contained in:
Pavel Kartavyy 2014-07-10 20:00:36 +04:00
parent 13830c960d
commit c60096564a

View File

@ -120,7 +120,7 @@ template <size_t N = 64>
class HashTableAllocatorWithStackMemory : private HashTableAllocator class HashTableAllocatorWithStackMemory : private HashTableAllocator
{ {
private: private:
char stack_memory[N]{}; char stack_memory[N];
public: public:
void * alloc(size_t size) void * alloc(size_t size)