xo-alloc: explicit typeseq arg to alloc
This commit is contained in:
parent
8c56a94238
commit
6bd33bd900
22 changed files with 99 additions and 48 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