Skip to content

Fix switch statements that don't conform to our coding standards #18

@nickkaranatsios

Description

@nickkaranatsios

Some code contains switch statements where the opening brace of a case statement is on a separate line. For example:

case x:
{
  do something here
}
break;

The above should be corrected to the following:

case X: {
  do something
}
break;

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions