Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
nickkaranatsios opened this issue Feb 7, 2013 · 0 comments
Open

Comments

@nickkaranatsios
Copy link
Member

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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant