Don't relax function calls

This commit is contained in:
2024-04-12 00:07:46 +02:00
parent 159a3a4f38
commit 9c7614dd25
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)
{