diff --git a/server/src/hardware/protocol/ecos/object/object.cpp b/server/src/hardware/protocol/ecos/object/object.cpp index a6ca23a2..7296c0bc 100644 --- a/server/src/hardware/protocol/ecos/object/object.cpp +++ b/server/src/hardware/protocol/ecos/object/object.cpp @@ -37,6 +37,8 @@ bool Object::receiveReply(const Reply& reply) { assert(reply.objectId == m_id); + (void)(reply); + return false; } @@ -44,6 +46,8 @@ bool Object::receiveEvent(const Event& event) { assert(event.objectId == m_id); + (void)(event); + return false; }