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

Clangd format bug #8968

Open
kwsp opened this issue Jul 11, 2024 · 0 comments
Open

Clangd format bug #8968

kwsp opened this issue Jul 11, 2024 · 0 comments

Comments

@kwsp
Copy link

kwsp commented Jul 11, 2024

OS: macOS Sonoma Version 14.5, M1
Buggy Clangd: Apple clangd version 15.0.0 (clang-1500.3.9.4)

With this .clang-format

---
BasedOnStyle: LLVM
---

I have this MRE code snippet:

auto func() {
  {
    {
      auto k = [] { return 1; }();
    }
    { auto x = 1; }
  }
  {}
}

Apple clang formats it to

auto func() {
  {{auto k = [] { return 1; }();
}
{ auto x = 1; }
}
{}
}

Homebrew clang-format (Homebrew clang-format version 18.1.7) formats it to this, which seems correct.

auto func() {
  {
    {
      auto k = [] { return 1; }();
    }
    { auto x = 1; }
  }
  {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant