Hello,
I found that MCUXpresso IDE is not parsing C vararg calls correcty.
For example:
#define test(format, ...) \
printf(format __VA_OPT__(,) __VA_ARGS__)
void foo(void) {
test("a");
test("a %d", 3);
}
For each call for the `test` macro it complains about syntax error while it complex perfectly.
I am not sure this is the correct channel to report this, I would like to know what channel to report these kind of issues.
Thanks,
Alon
Using: MCUXpresso IDE v11.8.1 [Build 1197] [2023-10-27]
