2018-08-26 01:16:37 +02:00
|
|
|
/* This file is part of the sirit project.
|
2019-07-14 23:48:59 +02:00
|
|
|
* Copyright (c) 2019 sirit
|
|
|
|
|
* This software may be used and distributed according to the terms of the
|
|
|
|
|
* 3-Clause BSD License
|
2018-08-26 01:16:37 +02:00
|
|
|
*/
|
|
|
|
|
|
2018-10-03 05:32:45 +02:00
|
|
|
#include <cassert>
|
2019-03-11 07:26:21 +01:00
|
|
|
#include "operand.h"
|
2018-08-26 01:16:37 +02:00
|
|
|
|
|
|
|
|
namespace Sirit {
|
|
|
|
|
|
2019-11-01 09:52:49 +01:00
|
|
|
Operand::Operand(OperandType operand_type) : operand_type{operand_type} {}
|
2018-08-26 01:16:37 +02:00
|
|
|
|
|
|
|
|
Operand::~Operand() = default;
|
|
|
|
|
|
|
|
|
|
} // namespace Sirit
|