From 84ce778ac2d515cc21a9cee3ac1dd53a1fba78fb Mon Sep 17 00:00:00 2001 From: Adam Goode Date: Sat, 30 Mar 2024 14:53:32 -0400 Subject: [PATCH] Fix duplicate clang-format directive Otherwise: /Users/agoode/multiversal/.clang-format:91:1: error: duplicated mapping key 'SpaceBeforeParens' SpaceBeforeParens: Never ^~~~~~~~~~~~~~~~~ Error reading /Users/agoode/multiversal/.clang-format: Invalid argument /tmp/multiversal/CIncludes/Multiverse.h --- .clang-format | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-format b/.clang-format index 4ff32e8..bab86ac 100644 --- a/.clang-format +++ b/.clang-format @@ -88,7 +88,6 @@ PenaltyReturnTypeOnItsOwnLine: 60 SpaceAfterCStyleCast: false SpaceBeforeAssignmentOperators: true SpaceInEmptyParentheses: false -SpaceBeforeParens: Never SpacesBeforeTrailingComments: 1 SpacesInAngles: false SpacesInContainerLiterals: true