Don't relax function calls

This commit is contained in:
2024-04-12 00:07:46 +02:00
parent ad45de9049
commit c6ef27d809
10 changed files with 55 additions and 16 deletions

View File

@ -375,6 +375,11 @@ namespace elna::source
return *m_operand;
}
unary_operator unary_expression::operation() const noexcept
{
return this->m_operator;
}
call_statement::call_statement(const struct position position, const std::string& name)
: statement(position), m_name(name)
{