mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fixed maybe-uninitialized warning
See: https://travis-ci.org/felis/USB_Host_Shield_2.0/jobs/567958670
This commit is contained in:
parent
821e37ed18
commit
102bf3f765
1 changed files with 5 additions and 0 deletions
|
@ -30,6 +30,11 @@ e-mail : support@circuitsathome.com
|
||||||
struct MultiValueBuffer {
|
struct MultiValueBuffer {
|
||||||
uint8_t valueSize;
|
uint8_t valueSize;
|
||||||
void *pValue;
|
void *pValue;
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
MultiValueBuffer() : valueSize(0), pValue(NULL) {
|
||||||
|
};
|
||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
|
|
||||||
class MultiByteValueParser {
|
class MultiByteValueParser {
|
||||||
|
|
Loading…
Reference in a new issue