From 260183a2c7fd7a402e4cd74945e08194f67880d8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 14 Mar 2019 02:50:05 -0400 Subject: [PATCH] operand: Append default to the default constructor Makes it consistent with the destructor. --- src/operand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operand.cpp b/src/operand.cpp index 127ae8e..821b533 100644 --- a/src/operand.cpp +++ b/src/operand.cpp @@ -9,7 +9,7 @@ namespace Sirit { -Operand::Operand() {} +Operand::Operand() = default; Operand::~Operand() = default;