From cdf85a905801e1fd7b86005abab940ed96074eb2 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 28 May 2019 15:18:11 +0200 Subject: [PATCH] Allow all types of functions on one line. Which would fit into the 75 char line limit. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 8f26b7e14..07570f377 100644 --- a/.clang-format +++ b/.clang-format @@ -12,7 +12,7 @@ AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: true AllowShortBlocksOnASingleLine: true AllowShortCaseLabelsOnASingleLine: true -AllowShortFunctionsOnASingleLine: Inline +AllowShortFunctionsOnASingleLine: All AllowShortIfStatementsOnASingleLine: true AllowShortLoopsOnASingleLine: true AlwaysBreakAfterDefinitionReturnType: None