mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-08 10:50:28 +00:00
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:
parent
58a8d2b78a
commit
df34d0845b
1 changed files with 4 additions and 0 deletions
4
third_party/sqlite3/geopoly.inc
vendored
4
third_party/sqlite3/geopoly.inc
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue