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);
#endif
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Warray-bounds"
while (PENDING(millis(), transfer_window)) {
switch (stream_state) {
/**
@ -439,6 +442,8 @@ public:
break;
}
}
#pragma GCC diagnostic pop
}
void dispatch() {