Closed
Description
I have the following clang-format file:
ColumnLimit: 80
AlignAfterOpenBracket: BlockIndent
This is a result of formatting:
void convert(message::Output &, mynamespace::MyTestObject1 &, mynamespace::MyTestObject2 &) {
}
length of the string is 93 character(limit is 80).
But when there is a parameter name param
it works as expected:
void convert(
message::Output &, mynamespace::MyTestObject1 &,
mynamespace::MyTestObject2 ¶m
) {}
Is this an expected behaviour?