Merge pull request #459 from SebDieBln/Fix_compiler_warnings

Fix compiler warnings
This commit is contained in:
Emiel Bruijntjes 2022-05-04 14:53:16 +02:00 committed by GitHub
commit 58389b9ca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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