[PATCH] D35743: [clang-format] Adjust space around &/&& of structured bindings

Manuel Klimek via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 20 02:38:24 PDT 2017


klimek added a comment.

1. Can you rebase after r313742? I fixed detection of structured bindings in the UnwrappedLineParser, that might affect this patch
2. Isn't LLVM style the reverse? That is, shouldn't that be

  LLVM style:

  auto &&[a, b] = ...

  Pointer/Ref-to-type-style:

  auto&& [a, b] = ...

(and I just notice that I didn't fully clang-format my last patch, argh!)


https://reviews.llvm.org/D35743





More information about the cfe-commits mailing list