From 736cd175d52906cd62dc35e49cce54f213040633 Mon Sep 17 00:00:00 2001 From: Vyacheslav Ivanov Date: Sat, 3 Aug 2024 19:21:28 +0300 Subject: [PATCH] format: fix: set AllowShortFunctionsOnASingleLine to 'None' This parameter for disabling requires None, not 'false' Signed-off-by: Vyacheslav Ivanov --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index c2aed0ea..d113efe3 100644 --- a/.clang-format +++ b/.clang-format @@ -9,7 +9,7 @@ IndentCaseLabels: true NamespaceIndentation: All FixNamespaceComments: false SpaceBeforeCpp11BracedList: true -AllowShortFunctionsOnASingleLine: false +AllowShortFunctionsOnASingleLine: None IndentAccessModifiers: false AccessModifierOffset: -4 EmptyLineBeforeAccessModifier: Never