Merge pull request #459 from SebDieBln/Fix_compiler_warnings
Fix compiler warnings
This commit is contained in:
commit
58389b9ca4
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue