I found out smth strange in g++ >= 3.3.5 =>
I was able to do
register char buff[outSTDBuffer];//// where
outSTDBuffer is a variable!!!!
Is it a bug in gcc or specification of c++ changed?? I've noticed this
a mistake after successfull compilation of my program!
Should I change the code. I think `register char buff[outSTDBuffer];`
is much safer then use pointers in case if outSTDBuffer is small!!!
I was able to do
register char buff[outSTDBuffer];//// where
outSTDBuffer is a variable!!!!
Is it a bug in gcc or specification of c++ changed?? I've noticed this
a mistake after successfull compilation of my program!
Should I change the code. I think `register char buff[outSTDBuffer];`
is much safer then use pointers in case if outSTDBuffer is small!!!
Comment