Linked by Eugenia Loli-Queru on Sat 15th Jul 2006 22:45 UTC
Thread beginning with comment 145650
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.





Member since:
2005-07-06
Agreed, in my company our 'coding standard' prevents the use of goto, which is quite frustrating..
As it means that often to return from function either you write a lot of if which makes the code unreadable, either you have many different return points which sometimes indice mistakes if you forget to clean-up before returning..
A goto at the end of the function to clean-up and return is a useful idiom..