Closed IohannRabeson closed 11 years ago
If yes, it would be necessary to change all conditional structures which are not surrounded by braces, even if it contains only one line.
Something as this:
if (prev_cell != NULL) prev_cell->v_next = cell; else v_this->v_begin = cell;
Would become:
if (prev_cell != NULL) { prev_cell->v_next = cell; } else { v_this->v_begin = cell; }
In my previous pull requests, I have make as you but since the doubt lives in me.
In the last version we can
Sweet! Can you send me a link to the updated standard? Or better, place a link to it into the coding guideline ;)
Look last commit
If yes, it would be necessary to change all conditional structures which are not surrounded by braces, even if it contains only one line.
Something as this:
Would become:
In my previous pull requests, I have make as you but since the doubt lives in me.