https://bugs.llvm.org/show_bug.cgi?id=32093
Bug ID: 32093
Summary: Implement formatting of structured bindings.
Product: clang
Version: trunk
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P
Component: Formatter
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected],
[email protected]
Structured bindings should be properly supported in clang-format.
auto [x, y, z] = std::make_tuple(0, 1, 2);
gets reformatted as
auto[x, y, z] = std::make_tuple(0, 1, 2);
Probably want to offer a way to customize this as well.
--
You are receiving this mail because:
You are on the CC list for the bug._______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs