On 2013-01-18 08:21, simendsjo wrote:

Well.. :)
enum E
{
   S      = 0x01,
   Longer = 0x10,
}

After:
enum E
{
   S = 0x01,
   Longer = 0x10,
}

Any manual formatting like lining up arguments is always lost. Following
the recommended style guide for a language by hand isn't that big a
feat, and allows to break it where you feel your own style is superior.

I'm pretty sure Eclipse even has an option to align assignments like these.

--
/Jacob Carlborg

Reply via email to