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
CC tests/unit-tests/munit/munit.o
../tests/unit-tests/munit/munit.c:1836:47: warning: argument 4 of type ‘char * const[argc + 1]’ declared with mismatched bound ‘argc + 1’ [-Wvla-parameter]
1836 | int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)],
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../tests/unit-tests/munit/munit.c:118:
../tests/unit-tests/munit/munit.h:478:51: note: previously declared as ‘char * const[argc + 1]’ with bound ‘argc + 1’
478 | int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)],
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../tests/unit-tests/munit/munit.c:2053:40: warning: argument 4 of type ‘char * const[argc + 1]’ declared with mismatched bound ‘argc + 1’ [-Wvla-parameter]
2053 | int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)]) {
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../tests/unit-tests/munit/munit.c:118:
../tests/unit-tests/munit/munit.h:463:86: note: previously declared as ‘char * const[argc + 1]’ with bound ‘argc + 1’
463 | int munit_suite_main(const MunitSuite* suite, void* user_data, int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)]);
| ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I do not yet understand why argc + 1 would be different from argc +1 . Still happens even if I remove MUNIT_ARRAY_PARAM -- which of course it does because on my platform that macro does nothing.
The text was updated successfully, but these errors were encountered:
It seems like a faulty -Wvla-parameter, now enabled in GCC 11 as part of -Wall, is to blame.
To clarify, have you tried removing the whole MUNIT_ARRAY_PARAM(argc + 1) expression, or only just the MUNIT_ARRAY_PARAM? (MUNIT_ARRAY_PARAM is a function macro.)
To clarify, have you tried removing the whole MUNIT_ARRAY_PARAM(argc + 1) expression, or only just the MUNIT_ARRAY_PARAM? (MUNIT_ARRAY_PARAM is a function macro.)
Lines such as
int
munit_suite_main_custom(const MunitSuite* suite, void* user_data,
int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)],
const MunitArgument arguments[]) {
I rewrote as
int
munit_suite_main_custom(const MunitSuite* suite, void* user_data,
int argc, char* const argv[(argc + 1)],
const MunitArgument arguments[]) {
munit hits some new warnings in gcc-11:
I do not yet understand why
argc + 1
would be different fromargc +1
. Still happens even if I removeMUNIT_ARRAY_PARAM
-- which of course it does because on my platform that macro does nothing.The text was updated successfully, but these errors were encountered: