1 /* This file is part of the sirit project.
2  * Copyright (c) 2019 sirit
3  * This software may be used and distributed according to the terms of the
4  * 3-Clause BSD License
5  */
6 
7 #include <cassert>
8 #include "operand.h"
9 
10 namespace Sirit {
11 
Operand(OperandType operand_type_)12 Operand::Operand(OperandType operand_type_) : operand_type{operand_type_} {}
13 
14 Operand::~Operand() = default;
15 
16 } // namespace Sirit
17