You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In each line, the packages to the right of the colon import headers fron
the one on the left with some 'prototypes' fn () . Compiling using
-Wstrict-prototypes
in CFLAGS (with gcc or clang < 15: this is implied by -pedantic in clang
15) shows warnings that are starting to show up on the CRAN results
pages, and will be used for CRAN incoming checks.
Some of these seem intended to be a function with no arguments, for
which the prototype is fn (void) . But for others, consistency checks
are being circumvented by not using a full prototype. In packages not
reported here these have shown up several bugs already ....
Please correct (in the packages before the colon) before 2022-11-04.
The text was updated successfully, but these errors were encountered:
From CRAN:
The text was updated successfully, but these errors were encountered: