* grub-core/script/yylex.l: Ignore unused-function and sign-compare
warnings.
This commit is contained in:
parent
bcfcea0174
commit
9cc836a27b
2 changed files with 7 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue