[PATCH] D37132: [clang-format] Add support for C++17 structured bindings.
Chih-Hung Hsieh via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 15 14:36:53 PDT 2017
chh added a comment.
Thanks for this change.
Could you take a look of https://reviews.llvm.org/D35743 too?
This outputs a space before and after "&" or "&&", like this
"auto & [...", "auto && [..."
Could we remove one of the space to a format like the following?
"auto& [...", "auto&& [..."
https://reviews.llvm.org/D37132
More information about the cfe-commits
mailing list