py/vmentrytable: Ignore GCC -Woverride-init.
Like Clang, GCC warns about this file, but only with -Woverride-init which is enabled by -Wextra. Disable the warnings for this file just like we do for Clang to make -Wextra happy.
This commit is contained in:
parent
9aa58cf8ba
commit
f1f6ef7b17
|
@ -30,6 +30,10 @@
|
|||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Winitializer-overrides"
|
||||
#endif // __clang__
|
||||
#if __GNUC__ >= 5
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Woverride-init"
|
||||
#endif // __GNUC__ >= 5
|
||||
|
||||
static const void *const entry_table[256] = {
|
||||
[0 ... 255] = &&entry_default,
|
||||
|
@ -119,3 +123,6 @@ static const void *const entry_table[256] = {
|
|||
#if __clang__
|
||||
#pragma clang diagnostic pop
|
||||
#endif // __clang__
|
||||
#if __GNUC__ >= 5
|
||||
#pragma GCC diagnostic pop
|
||||
#endif // __GNUC__ >= 5
|
||||
|
|
Loading…
Reference in New Issue