Thanks for the fix! LG

BTW, it seems wrong that we don't allow if-else chains without braces, when 
every body fits on one line.

  if (...) ...;
  else if (....) ...;
  ...

or

  if (...)
    ...;
  else if (....)
    ...;
  ...

depending on the style and ShortStatementLines setting.


http://reviews.llvm.org/D10245

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/



_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to