* grub-core/script/yylex.l: Ignore unused-function and sign-compare

warnings.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-09-05 08:51:31 +02:00
parent bcfcea0174
commit 9cc836a27b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/script/yylex.l: Ignore unused-function and sign-compare
warnings.
2012-09-05 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/partmap/dvh.c (grub_dvh_is_valid): Add missing byteswap.

View File

@ -29,6 +29,8 @@
#pragma GCC diagnostic ignored "-Wmissing-prototypes"
#pragma GCC diagnostic ignored "-Wmissing-declarations"
#pragma GCC diagnostic ignored "-Wunsafe-loop-optimizations"
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wsign-compare"
#define yyfree grub_lexer_yyfree
#define yyalloc grub_lexer_yyalloc