refactor: void return type for Collector.forward_children()
This commit is contained in:
parent
489222311f
commit
6b8ac3dcd2
24 changed files with 42 additions and 34 deletions
|
|
@ -29,6 +29,14 @@ namespace xo {
|
|||
{
|
||||
}
|
||||
|
||||
DGlobalSymtab::DGlobalSymtab(DGlobalSymtab && other)
|
||||
: var_map_{std::move(other.var_map_)},
|
||||
vars_{std::move(other.vars_)},
|
||||
type_map_{std::move(other.type_map_)},
|
||||
types_{std::move(other.types_)}
|
||||
{
|
||||
}
|
||||
|
||||
DGlobalSymtab *
|
||||
DGlobalSymtab::_make(obj<AAllocator> mm,
|
||||
obj<AAllocator> aux_mm,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue