From 17ba55adf1f8318348d2b35051f049cde51bfc18 Mon Sep 17 00:00:00 2001 From: Kwanghoon Son Date: Tue, 15 Nov 2022 20:07:07 -0500 Subject: [PATCH] Fix tizen coding rule M16 [Issue type] Fix [M16] Open braces for enum, union and struct go on the same line. this make braces to ``` struct people { // same line }; ``` Change-Id: I4c2c293244c8bbfaf6630ccda861f1e96cf0c153 Signed-off-by: Kwanghoon Son --- .clang-format | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.clang-format b/.clang-format index aa20f06..e8177de 100644 --- a/.clang-format +++ b/.clang-format @@ -38,9 +38,9 @@ BraceWrapping: BeforeElse: false # M16 - AfterEnum: true - AfterStruct: true - AfterUnion: true + AfterEnum: false + AfterStruct: false + AfterUnion: false # by inquiry AfterClass: true -- 2.7.4