History squashed from internal development. Internal history has commit hash: e27a0e485c44a5003a802de2661ce3b21e120316
20 lines
270 B
C++
20 lines
270 B
C++
#pragma once
|
|
|
|
#include "../mem/baseslab.h"
|
|
#include "remoteallocator.h"
|
|
|
|
namespace snmalloc
|
|
{
|
|
class Allocslab : public Baseslab
|
|
{
|
|
protected:
|
|
RemoteAllocator* allocator;
|
|
|
|
public:
|
|
RemoteAllocator* get_allocator()
|
|
{
|
|
return allocator;
|
|
}
|
|
};
|
|
}
|