/// AUTOGENERATED COPYRIGHT HEADER START // Copyright (C) 2017-2024 Michael Fabian 'Xaymar' Dirks // AUTOGENERATED COPYRIGHT HEADER END #include "arithmetic.hpp" blitz::ast::arithmetic_expression::arithmetic_expression(expression_operator op, std::unique_ptr left, std::unique_ptr right) : m_operator(op), m_left(std::move(left)), m_right(std::move(right)) {} blitz::ast::arithmetic_expression::~arithmetic_expression() {}