Skip to content

Commit

Permalink
GuiLite: Suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryzee119 committed Nov 30, 2021
1 parent a05b5cf commit c034c76
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib/GuiLite.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreorder"
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"

#pragma once

#define REAL_TIME_TASK_CYCLE_MS 50
Expand Down Expand Up @@ -4334,4 +4339,5 @@ WND_TREE g_number_board_children[] =
{&s_key_enter,'\n', 0, POS_X(3), POS_Y(2), KEY_WIDTH, KEY_HEIGHT * 2 + 2},
{0,0,0,0,0,0,0}
};
#endif
#endif
#pragma GCC diagnostic pop

0 comments on commit c034c76

Please sign in to comment.