On Wed, Dec 05, 2001 at 06:17:29PM +0000, John Levon wrote:
> please apply ...

What do the code rules say for

  if (a) {
    return b;
  } else if (d) {
    return e;
  } else {
    // main stuff
    return c;
  }

I'd actually prefer

  if (a) {
    return b;
  }
  if (d) {
    return e;
  }
  // main stuff
  return c;

especially if there are more "cases"  or  (a) and (d) are "enforcing"
prerequisites for "//stuff"...

Andre'

-- 
André Pönitz .............................................. [EMAIL PROTECTED]

Reply via email to