Details
-
Improvement
-
Status: Accepted
-
Trivial
-
Resolution: Unresolved
-
None
-
None
-
None
-
1
Description
Similar to MESOS-2577; another common style mistake is to not move curly braces on a newline for function and class declarations:
class Foo {
void bar() {
...
}
};
vs
class Foo
{
void bar()
{
...
}
};
This should be easy to check with our style checker too.