From f0457c106db68c1843e936c7ad5cb9c51c036184 Mon Sep 17 00:00:00 2001 From: GullCode Date: Wed, 27 Jan 2021 16:43:13 +0100 Subject: [PATCH] Added missing default constructor --- firmware/application/apps/ert_app.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/application/apps/ert_app.hpp b/firmware/application/apps/ert_app.hpp index d7488860..14eb61c0 100644 --- a/firmware/application/apps/ert_app.hpp +++ b/firmware/application/apps/ert_app.hpp @@ -50,6 +50,8 @@ struct ERTKey { { } + ERTKey( const ERTKey& other ) = default; + ERTKey& operator=(const ERTKey& other) { id = other.id; commodity_type = other.commodity_type;