1
0
Fork 0
mirror of https://git.suyu.dev/suyu/sirit.git synced 2025-01-03 09:26:03 +00:00

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;