mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-15 12:29:26 +01:00
[HID] Added missing const in length
This commit is contained in:
parent
953e6fa206
commit
43d3428d2b
@ -46,8 +46,9 @@ class HIDDescriptorListNode {
|
||||
public:
|
||||
HIDDescriptorListNode *next = NULL;
|
||||
HIDDescriptorListNode(const void *d, const uint16_t l) : data(d), length(l) { }
|
||||
uint16_t length;
|
||||
|
||||
const void* data;
|
||||
const uint16_t length;
|
||||
};
|
||||
|
||||
class HID_
|
||||
|
Loading…
x
Reference in New Issue
Block a user