clang-format produced code that (choose all that apply):
- Riles my finely honed stylistic dander
Here's the code before formatting:
Column column = {name, type, false, sealed_version_ + 1, kInvalidVersion, false, false};
Here's the code after formatting (note the double space after name):
Column column = {name, type, false, sealed_version_ + 1, kInvalidVersion,
false, false};
Here's how it ought to look:
Column column = {name, type, false, sealed_version_ + 1, kInvalidVersion,
false, false};
Code review link for full files/context:
https://chromium-review.googlesource.com/c/556034/1/components%252Fpassword_manager%252Fcore%252Fbrowser%252Fsql_table_builder.cc#79
Comment 1 by vabr@chromium.org
, Jul 7 2017