mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-14 15:42:28 -05:00
jpeg: Silence -Wshift-negative-value warnings
These are all from upstream code, so just force-ignore the warnings Change-Id: I9936e1cb79636b0bfee5dd4db0c98a06792d2f69
This commit is contained in:
parent
9e52dcc7e7
commit
6f5760b41a
3 changed files with 17 additions and 0 deletions
|
|
@ -46,6 +46,10 @@ jpeg81.c
|
|||
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||
#if (__GNUC__ >= 6)
|
||||
#pragma GCC diagnostic ignored "-Wshift-negative-value"
|
||||
#endif
|
||||
|
||||
///////////////////////////////////////// LOSSLESS /////////////////////////////////////////
|
||||
|
||||
static int P1(struct COMP *C, TSAMP *samp) // Px = Ra
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue