Options related to packing arguments of function calls.
More...
#include "clang/Format/Format.h"
Options related to packing arguments of function calls.
Definition at line 4248 of file Format.h.
◆ operator!=()
◆ operator==()
◆ BinPack
The bin pack arguments style to use.
- Version
- 3.7
Definition at line 4252 of file Format.h.
◆ BreakAfter
| unsigned clang::format::FormatStyle::PackArgumentsStyle::BreakAfter |
An argument list with more arguments than the specified number will be formatted with one argument per line.
This option must be used with BinPack: UseBreakAfter.
void f() {
foo(1);
bar(1, 2, 3);
baz(1,
2,
3,
4);
}
- Version
- 23
Definition at line 4274 of file Format.h.
The documentation for this struct was generated from the following file: