Introduce a procedure type
This commit is contained in:
@ -21,4 +21,9 @@ namespace elna::source
|
||||
: type(byte_size), base_type(base_type)
|
||||
{
|
||||
}
|
||||
|
||||
procedure_type::procedure_type(std::vector<std::shared_ptr<const type>> arguments, const std::size_t byte_size)
|
||||
: arguments(std::move(arguments)), type(byte_size)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user