summaryrefslogtreecommitdiffstats
path: root/external/meta-qt5/recipes-qt/qt5/qt5-creator/0001-clangformat-AllowShortIfStatementsOnASingleLine-is-n.patch
blob: 7338f02bdd159b690d4239b1d0591eecaf62531c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
From 453c075b67b9d9254bf7331e1e3be287f240a9e0 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 3 Sep 2019 13:31:12 -0700
Subject: [PATCH] clangformat: AllowShortIfStatementsOnASingleLine is not
 boolean anymore

https://reviews.llvm.org/D59087 has implemented multiple states for AllowShortIfStatementsOnASingleLine

Fixes
../../../../git/src/plugins/clangformat/clangformatutils.cpp:63:49: error: assigning to 'clang::format::FormatStyle::ShortIfStyle' from incompatible type 'bool'
    style.AllowShortIfStatementsOnASingleLine = false;
                                                ^~~~~

Upstream-Status: Pending

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 src/plugins/clangformat/clangformatutils.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/src/plugins/clangformat/clangformatutils.cpp
+++ b/src/plugins/clangformat/clangformatutils.cpp
@@ -57,10 +57,18 @@ static clang::format::FormatStyle qtcSty
     style.AlignOperands = true;
     style.AlignTrailingComments = true;
     style.AllowAllParametersOfDeclarationOnNextLine = true;
+#if Q_CC_CLANG < 1000
     style.AllowShortBlocksOnASingleLine = false;
+#else
+    style.AllowShortBlocksOnASingleLine = FormatStyle::SBS_Never;
+#endif
     style.AllowShortCaseLabelsOnASingleLine = false;
     style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
+#if Q_CC_CLANG < 900
     style.AllowShortIfStatementsOnASingleLine = false;
+#else
+    style.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never;
+#endif
     style.AllowShortLoopsOnASingleLine = false;
     style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None;
     style.AlwaysBreakBeforeMultilineStrings = false;
@@ -68,7 +76,11 @@ static clang::format::FormatStyle qtcSty
     style.BinPackArguments = false;
     style.BinPackParameters = false;
     style.BraceWrapping.AfterClass = true;
+#if Q_CC_CLANG < 1000
     style.BraceWrapping.AfterControlStatement = false;
+#else
+    style.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_Never;
+#endif
     style.BraceWrapping.AfterEnum = false;
     style.BraceWrapping.AfterFunction = true;
     style.BraceWrapping.AfterNamespace = false;