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

@ -86,16 +86,16 @@ sp_before_squares = remove
sp_inside_square = remove
sp_after_comma = force
sp_after_cast = remove # "(int) a" -> "(int)a"
sp_after_sparen = force # "if () {" -> "if (){"
sp_after_sparen = force # "if (){" -> "if () {"
sp_before_sparen = force # "if (" -> "if("
sp_inside_paren = remove # "( 1 )" -> "(1)"
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("