mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-01 19:28:25 -05:00
17 lines
366 B
C++
Executable File
17 lines
366 B
C++
Executable File
/* 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
|