Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clang-format: don't align expressions after linebreaks
We enforce alignment of expressions after linebreaks. Which means for code such as return a || b; it will expect: return a || b; we instead want 'b' to be indent with tabs, which is already done by the 'ContinuationIndentWidth' variable. So let's explicitly set 'AlignOperands' to false. Signed-off-by: Karthik Nayak <[email protected]>
- Loading branch information