Changes between Initial Version and Version 1 of Ticket #61032, comment 8


Ignore:
Timestamp:
Sep 19, 2020, 9:54:38 AM (4 years ago)
Author:
chrstphrchvz (Christopher Chavez)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #61032, comment 8

    initial v1  
    11The warnings for `snprintf()` and `strdup()` can be dealt with by defining `_XOPEN_SOURCE` as `600` rather than `500`. But there is still a file with a deliberate implicit function declaration (parser.c uses `yylex()` at line 1394, but `yylex()` isn't defined until scanner.c is included at line 2152); I'm not sure there's a better way of dealing with this than `-Wno-error=implicit-function-declaration`.
     2
     3(**Edit**: line numbers refer to source in untagged 2.2.27.14 release.)