Reporter | Duncan Kimpton (dgkimpton) |
---|---|
Created | Dec 29, 2011 12:34:31 PM |
Updated | Jan 2, 2012 3:01:00 PM |
Resolved | Jan 2, 2012 3:01:00 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Can't Reproduce |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | Code Cleanup |
Affected versions | 6.1 |
Fixed in build | No Fixed in build |
I have the option 'Force chop compound condition in "if" statement' set to On.
Unfortunately in 6.1 it chops all my conditionals.
e.g.
{code lang=C#}
if (x>y)
{
}
Which I can't imagine is what anyone wants ever...
Unfortunately in 6.1 it chops all my conditionals.
e.g.
{code lang=C#}
if (x>y)
{
}
becomes {code lang=C#} if (x > y) { }
Which I can't imagine is what anyone wants ever...