Thursday, November 26, 2009

Correct easily if without block instructions code

Hi,


I would like to know if I have to add instructions bloc in this case :

if ( cond1 &&
cond2 )

/* general comment
// a comment

*
*/

return result;


==> has to become

if ( cond1 &&
cond2 )
{
/* general comment
// a comment

*
*/
return result;
}


Thanks
Best Regards

--
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php

No comments: