No warning about not referenced variables

Started by Marco, January 22, 2021, 05:58:33 PM

Previous topic - Next topic

Marco

Hello!

While compiling the source code of one of my programs, I noticed that the compiler did not warn me about some declared (but not referenced) 'char' variables. It's a very minor issue, but I don't know if it's a compiler bug or not. Anyway, to reproduce the issue, just declare a couple of never referenced 'char' variables like the following:


int n = 8;
char str1[8];     <== warning #2114: Local 'str1' is not referenced.
char str2[n];     <== no warning


During the compilation, the compiler will not warn about the 'str2' variable.

Marco

TimoVJL

char str1[8]; is static
char str2[n]; isn't static, even n is
May the source be with you

Marco