From b0aa9784978a5f63a8d7be614ab77684de4315f3 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 30 Oct 2022 18:02:55 +0100 Subject: ignore unused static variable --- shared/protocol.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/protocol.h b/shared/protocol.h index e5ddf05..310940d 100644 --- a/shared/protocol.h +++ b/shared/protocol.h @@ -143,10 +143,13 @@ ws_protocol_res_handler_t ws_protocol_res_last_records; */ void ws_protocol_send_data(const char* data, unsigned int length); +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" /** @brief response handlers, called when a command is parsed */ static ws_protocol_res_handler_t* g_ws_protocol_res_handlers[WS_PROTOCOL_CMD_AMOUNT] = { [WS_PROTOCOL_CMD_LAST_RECORDS] = &ws_protocol_res_last_records, }; +#pragma GCC diagnostic pop /** @brief return length of custom protocol header */ unsigned short ws_protocol_get_header_size(ws_s_protocol_res* response); -- cgit v1.2.3