Suppress data[] array warning

This commit is contained in:
Scott Lahteine 2019-10-07 19:31:48 -05:00
parent e84389c976
commit 59508edf64

View file

@ -306,6 +306,9 @@ public:
PORT_REDIRECT(card.transfer_port_index); PORT_REDIRECT(card.transfer_port_index);
#endif #endif
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Warray-bounds"
while (PENDING(millis(), transfer_window)) { while (PENDING(millis(), transfer_window)) {
switch (stream_state) { switch (stream_state) {
/** /**
@ -439,6 +442,8 @@ public:
break; break;
} }
} }
#pragma GCC diagnostic pop
} }
void dispatch() { void dispatch() {