Avoid compiler warnings about unused parameters

This commit is contained in:
Sebastian Dietrich 2022-04-25 20:35:01 +02:00
parent beaa1939c9
commit eedfc00660
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ public:
* Construct based on incoming data * Construct based on incoming data
* @param frame * @param frame
*/ */
VoidField(InBuffer &frame) {} VoidField(InBuffer &frame) { (void)frame; }
/** /**
* Destructor * Destructor
@ -65,7 +65,7 @@ public:
* Write encoded payload to the given buffer. * Write encoded payload to the given buffer.
* @param buffer OutBuffer to write to * @param buffer OutBuffer to write to
*/ */
virtual void fill(OutBuffer &buffer) const override {} virtual void fill(OutBuffer &buffer) const override { (void)buffer; }
/** /**
* Get the type ID that is used to identify this type of * Get the type ID that is used to identify this type of