Details
-
Task
-
Resolution: Won't Do
-
Trivial - P5
-
None
-
None
-
None
-
None
Description
Our current code style has opening braces on lines by themselves.
At least two members of the team have expressed a preference to allow the opening brace to be part of the previous line of code e.g.
// current style:
|
if (...) |
{
|
// blah |
}
|
|
|
// proposed change
|
if (...) { |
// blah |
}
|
If a majority of the team prefers this style, perhaps we should consider using it.