bdoom wrote:
> https://pastebin.com/muEvCTz2

> sqlite3.c(16979,5): warning : 'SQLITE_4_BYTE_ALIGNED_MALLOC' is not defined, 
> evaluates to 0 [-Wundef]
> 2>#if SQLITE_4_BYTE_ALIGNED_MALLOC
> 2>    ^

> Is this anything to worry about?

No.  The C standard says that in the #if expression, identifiers that
are not macros are considered to be the number zero.  (Whether it is
a good idea to use this feature is a different question.)

You get that warning because you did enable -Wundef.
Why did you do that?


Regards,
Clemens
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to