xo-alloc: explicit typeseq arg to alloc
This commit is contained in:
parent
a136241fbb
commit
d5b6861b80
11 changed files with 48 additions and 26 deletions
|
|
@ -111,16 +111,18 @@ namespace xo {
|
|||
|
||||
std::byte *
|
||||
IAllocator_DArena::alloc(DArena & s,
|
||||
typeseq t,
|
||||
std::size_t req_z)
|
||||
{
|
||||
return s.alloc(req_z);
|
||||
return s.alloc(t, req_z);
|
||||
}
|
||||
|
||||
std::byte *
|
||||
IAllocator_DArena::super_alloc(DArena & s,
|
||||
typeseq t,
|
||||
std::size_t req_z)
|
||||
{
|
||||
return s.super_alloc(req_z);
|
||||
return s.super_alloc(t, req_z);
|
||||
}
|
||||
|
||||
std::byte *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue