diff options
| author | Mark Stapp <mstapp@nvidia.com> | 2021-12-06 10:50:43 -0500 |
|---|---|---|
| committer | Mark Stapp <mstapp@nvidia.com> | 2021-12-06 10:50:43 -0500 |
| commit | 9afa78de7a9b48b5cf05f95fc0b7258bc59d7494 (patch) | |
| tree | d872a8edc4406666ad3dfddca6ed72229ee0e77e /.clang-format | |
| parent | e2144103f81c5bd46f734bc94e1dbc0aebb66f6e (diff) | |
tools: clang-format break after operators
Break after binary operators, rather than before.
Signed-off-by: Mark Stapp <mstapp@nvidia.com>
Diffstat (limited to '.clang-format')
| -rw-r--r-- | .clang-format | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format index e1897bfa99..c84a29f861 100644 --- a/.clang-format +++ b/.clang-format @@ -15,7 +15,7 @@ AllowAllParametersOfDeclarationOnNextLine: false AlignAfterOpenBracket: true SpaceAfterCStyleCast: false MaxEmptyLinesToKeep: 2 -BreakBeforeBinaryOperators: NonAssignment +BreakBeforeBinaryOperators: None BreakStringLiterals: false SortIncludes: false IncludeCategories: |
