summaryrefslogtreecommitdiffstats
path: root/yql/essentials/utils/limiting_allocator.h
blob: f90a09e7b7bec3615f503bf7e56ae8962a2662b3 (plain) (blame)
1
2
3
4
5
6
7
8
#pragma once

#include <util/memory/pool.h>
#include <memory>

namespace NYql {
std::unique_ptr<IAllocator> MakeLimitingAllocator(size_t limit, IAllocator* underlying);
} // namespace NYql