Also note that if(a=b) will generate a warning on modern compiler because often a miss write of a==b.
The modern convention is to write if( (a=b) ) to express the intention to assign and shut up the warning.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.