Mirsad Todorovac wrote:
I+'m having an uninitialized string s1 used in ValBase(), and -Wuninitialized wouldn't work:
GCC manual:
: `-Wuninitialized' : : [...] : : These warnings occur only for variables that are candidates for : register allocation. Therefore, they do not occur for a variable : that is declared `volatile', or whose address is taken, or whose : size is other than 1, 2, 4 or 8 bytes. Also, they do not occur for : structures, unions or arrays, even when they are in registers.
Frank