Fix tizen coding rule M16 30/284330/1
authorKwanghoon Son <k.son@samsung.com>
Wed, 16 Nov 2022 01:07:07 +0000 (20:07 -0500)
committerKwanghoon Son <k.son@samsung.com>
Wed, 16 Nov 2022 01:07:07 +0000 (20:07 -0500)
[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 <k.son@samsung.com>
.clang-format

index aa20f06..e8177de 100644 (file)
@@ -38,9 +38,9 @@ BraceWrapping:
   BeforeElse:      false
 
   # M16
-  AfterEnum:       true
-  AfterStruct:     true
-  AfterUnion:      true
+  AfterEnum:       false
+  AfterStruct:     false
+  AfterUnion:      false
 
   # by inquiry
   AfterClass:      true