operand: Move operand_type initialization to constructor

This commit is contained in:
ReinUsesLisp 2019-11-01 05:52:49 -03:00
parent 53d572ae7d
commit 4c2981eab5
5 changed files with 11 additions and 15 deletions

View file

@ -9,7 +9,7 @@
namespace Sirit {
Operand::Operand() = default;
Operand::Operand(OperandType operand_type) : operand_type{operand_type} {}
Operand::~Operand() = default;