2025-12-14 03:10 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* contrib/hbzebra/datamtrx.c
    * extended GCC excessive diagnostics workaround also for GCC-15 to fix
      strict mode in CI
This commit is contained in:
Przemysław Czerpak
2025-12-14 03:10:53 +01:00
parent 1411ce7f9c
commit e22fb4686d
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,11 @@
Entries may not always be in chronological/commit order. Entries may not always be in chronological/commit order.
See license at the end of file. */ See license at the end of file. */
2025-12-14 03:10 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbzebra/datamtrx.c
* extended GCC excessive diagnostics workaround also for GCC-15 to fix
strict mode in CI
2025-12-13 19:38 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) 2025-12-13 19:38 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* include/hbdate.h * include/hbdate.h
* src/common/hbdate.c * src/common/hbdate.c

View File

@@ -66,7 +66,7 @@
#include "hbzebra.h" #include "hbzebra.h"
#if defined( __GNUC__ ) && __GNUC__ >= 12 && __GNUC__ <= 14 #if defined( __GNUC__ ) && __GNUC__ >= 12 && __GNUC__ <= 15
/* workaround for GCC bug */ /* workaround for GCC bug */
#pragma GCC diagnostic ignored "-Warray-bounds" #pragma GCC diagnostic ignored "-Warray-bounds"
#endif #endif