clang-format: Don't touch the comments

clang-format 13 started to enforce at least one space after //.
Let's not touch the comments to prevent spurious line changes.
This commit is contained in:
Sebastian Krzyszkowiak 2022-02-04 02:22:35 +01:00
parent 3cc20cdf32
commit b034b153d7
No known key found for this signature in database
GPG key ID: E8F235CF3BDBC3FF

View file

@ -34,6 +34,9 @@ SpaceInEmptyParentheses: 'false'
SpacesBeforeTrailingComments: '1'
SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
SpacesInLineCommentPrefix:
Minimum: 0
Maximum: -1
SpacesInParentheses: 'false'
SpacesInSquareBrackets: 'false'
Standard: Cpp11