uncrustify: Remove space between braces

master
Pierre Neidhardt 2015-09-08 19:16:01 +02:00
parent 4b50768402
commit 0b4ddee9f0
1 changed files with 4 additions and 4 deletions

View File

@ -93,9 +93,9 @@ sp_paren_paren = remove # space between (( and ))
sp_inside_fparen = remove # "( 1 )" -> "(1)" - functions
sp_inside_sparen = remove # "( 1 )" -> "(1)" - if/for/etc
sp_sizeof_paren = force # "sizeof(int)" -> "sizeof (int)"
sp_inside_braces = force # "{ 1 }" -> "{1}"
sp_inside_braces_struct = force # "{ 1 }" -> "{1}"
sp_inside_braces_enum = force # "{ 1 }" -> "{1}"
sp_inside_braces = remove # "{ 1 }" -> "{1}"
sp_inside_braces_struct = remove # "{ 1 }" -> "{1}"
sp_inside_braces_enum = remove # "{ 1 }" -> "{1}"
sp_func_def_paren = remove # "int foo () {" -> "int foo() {"
sp_func_proto_paren = remove # "int foo ();" -> "int foo();"
sp_func_call_paren = remove # "foo (" -> "foo("