Style check fix

This commit is contained in:
Maksim Kita 2020-12-16 18:59:53 +03:00
parent 484e6e7de4
commit 80dbbc7e58
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
#include <Common/MemoryTracker.h>
#include <Common/Exception.h>
#include <Common/formatReadable.h>
#include <Common/getPageSize.h>
#include <Common/getPageSize.h>
#include <Common/Allocator_fwd.h>

View File

@ -130,7 +130,7 @@ private:
public:
Arena(size_t initial_size_ = 4096, size_t growth_factor_ = 2, size_t linear_growth_threshold_ = 128 * 1024 * 1024)
: growth_factor(growth_factor_), linear_growth_threshold(linear_growth_threshold_),
head(new Chunk(initial_size_, nullptr)), size_in_bytes(head->size()),
head(new Chunk(initial_size_, nullptr)), size_in_bytes(head->size()),
page_size(static_cast<size_t>(::getPageSize()))
{
}