From b034b153d76669044a5bf80a186785aa838df996 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Fri, 4 Feb 2022 02:22:35 +0100 Subject: [PATCH] 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. --- .clang-format | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-format b/.clang-format index bd14970..67ee99b 100644 --- a/.clang-format +++ b/.clang-format @@ -34,6 +34,9 @@ SpaceInEmptyParentheses: 'false' SpacesBeforeTrailingComments: '1' SpacesInAngles: 'false' SpacesInCStyleCastParentheses: 'false' +SpacesInLineCommentPrefix: + Minimum: 0 + Maximum: -1 SpacesInParentheses: 'false' SpacesInSquareBrackets: 'false' Standard: Cpp11