Suppress uninitialized warning

This suppresses the following warning (treated as error):
  third_party/sqlite3/geopoly.inc:638:9: error: 'a.f' may be used
    uninitialized in this function [-Werror=maybe-uninitialized]
    638 |     mnX = aCoord[0].f;
This commit is contained in:
Paul Kulchenko 2022-11-24 11:08:39 -08:00
parent 58a8d2b78a
commit df34d0845b

View file

@ -27,6 +27,10 @@
# define GEODEBUG(X)
#endif
#if defined(__GNUC__) && !defined(__llvm__)
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
/* Character class routines */
#ifdef sqlite3Isdigit
/* Use the SQLite core versions if this routine is part of the