We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fba6ca8 commit 209b079Copy full SHA for 209b079
hardware/arduino/avr/libraries/HID/HID.h
@@ -47,7 +47,7 @@
47
class HIDDescriptorListNode {
48
public:
49
HIDDescriptorListNode *next = NULL;
50
- HIDDescriptorListNode(const void *d, uint16_t l) : data(d), length(l) { }
+ HIDDescriptorListNode(const void *d, const uint16_t l) : data(d), length(l) { }
51
52
const void* data;
53
uint16_t length;
hardware/arduino/sam/libraries/HID/HID.h
@@ -45,7 +45,7 @@
45
46
};
0 commit comments