operand: Append default to the default constructor

Makes it consistent with the destructor.
This commit is contained in:
Lioncash 2019-03-14 02:50:05 -04:00
parent 2035d25bef
commit 260183a2c7

View File

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