Observed issue
==============
t = tabs
s = space
tabs = 8 blanks
clang-format on this code will align with the operand using space.
consumed_len = sizeof(struct lttng_action_start_session_comm) +
t ssssssscomm->session_name_len;
We want:
consumed_len = sizeof(struct lttng_action_start_session_comm) +
t t comm->session_name_len;
Solution
========
Explicitly set it to false.
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Change-Id: I39bee6d82b20f4b6f9587a2911abb183de767d25
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: Left
-AlignOperands: true
+AlignOperands: false
AlignTrailingComments: false
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false