blob: a86cceaf182d958866afd1641dec45dbce26e08c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "common.hpp"
#include "ref.hpp"
namespace intellect {
namespace level0 {
ref alloc(concept * moved = 0);
void dealloc(ref);
std::size_t allocated();
}
}
|