From 5075c99f27455856a3441427d8c8e26f8427244b Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Mon, 28 Dec 2015 22:09:29 +0000 Subject: [PATCH] Update .clang-format file to support break after return type. This depends on having a recently built version of clang-format installed, as the patch to support this behavior was only just recently added to clang-format. llvm-svn: 256526 --- lldb/.clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/.clang-format b/lldb/.clang-format index cf199fc7596f..c698dc5d99cf 100644 --- a/lldb/.clang-format +++ b/lldb/.clang-format @@ -2,7 +2,7 @@ BasedOnStyle: LLVM IndentWidth: 4 ColumnLimit: 120 BreakBeforeBraces: Allman -AlwaysBreakAfterDefinitionReturnType: true +AlwaysBreakAfterReturnType: All AllowShortFunctionsOnASingleLine: Inline ConstructorInitializerAllOnOneLineOrOnePerLine: true IndentCaseLabels: true