sirit/src/operand.cpp
2019-11-01 06:07:53 -03:00

17 lines
364 B
C++

/* This file is part of the sirit project.
* Copyright (c) 2019 sirit
* This software may be used and distributed according to the terms of the
* 3-Clause BSD License
*/
#include <cassert>
#include "operand.h"
namespace Sirit {
Operand::Operand(OperandType operand_type) : operand_type{operand_type} {}
Operand::~Operand() = default;
} // namespace Sirit