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 issue 483: indent continuing case statements on the same level #495

Merged
merged 1 commit into from
Jul 22, 2020

Conversation

FeepingCreature
Copy link
Contributor

@FeepingCreature FeepingCreature commented Jul 6, 2020

Expected:

  switch (foo) {
    case A:
    case B:
      break;
  }

Got:

  switch (foo) {
    case A:
      case B:
      break;
  }

@WebFreak001 WebFreak001 linked an issue Jul 6, 2020 that may be closed by this pull request
@dlang-bot dlang-bot merged commit b5dbb0e into dlang-community:master Jul 22, 2020
@FeepingCreature FeepingCreature deleted the fix/issue-483 branch July 22, 2020 13:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

align_switch_statements=false wrongly indents fallthrough
3 participants