sirit/src/operand.cpp

17 lines
366 B
C++
Raw Normal View History

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-27 09:46:03 +01:00
Operand::Operand(OperandType operand_type_) : operand_type{operand_type_} {}
2018-08-26 01:16:37 +02:00
Operand::~Operand() = default;
} // namespace Sirit