mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
Style check fix
This commit is contained in:
parent
484e6e7de4
commit
80dbbc7e58
@ -30,7 +30,7 @@
|
|||||||
#include <Common/MemoryTracker.h>
|
#include <Common/MemoryTracker.h>
|
||||||
#include <Common/Exception.h>
|
#include <Common/Exception.h>
|
||||||
#include <Common/formatReadable.h>
|
#include <Common/formatReadable.h>
|
||||||
#include <Common/getPageSize.h>
|
#include <Common/getPageSize.h>
|
||||||
|
|
||||||
#include <Common/Allocator_fwd.h>
|
#include <Common/Allocator_fwd.h>
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ private:
|
|||||||
public:
|
public:
|
||||||
Arena(size_t initial_size_ = 4096, size_t growth_factor_ = 2, size_t linear_growth_threshold_ = 128 * 1024 * 1024)
|
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_),
|
: 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()))
|
page_size(static_cast<size_t>(::getPageSize()))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user