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:
Emil Renner Berthing 2019-11-28 12:50:08 +01:00
parent 9aa58cf8ba
commit f1f6ef7b17
1 changed files with 7 additions and 0 deletions

View File

@ -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