blob: 08d645afd177fd638bcf5154b6abee995445a82e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "concepts.hpp"
#include "funcs.hpp"
#include "../level-0/memorystore.hpp"
namespace intellect {
namespace level1 {
namespace concepts {
static struct init { init() {
givename(intellect::level0::concepts::allocator(), "allocator");
givename(intellect::level0::concepts::allocates(), "allocates");
givename(intellect::level0::concepts::allocations(), "allocations");
givename(intellect::level0::concepts::level0allocations(), "level0-allocations");
} } __init;
}
}
}
|