1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #10 from daniel-k/pr/uncrustify_add_braces

uncrustify: add braces around if
This commit is contained in:
Oleg Hahm 2015-11-04 18:20:21 +09:00
commit 865ec68eae

View File

@ -29,6 +29,7 @@ nl_fdef_brace = add # "int foo() {" vs "int foo()\n{"
# #
mod_paren_on_return = remove # "return 1;" vs "return (1);" mod_paren_on_return = remove # "return 1;" vs "return (1);"
mod_full_brace_if = add # "if() { } else { }" vs "if() else"
# #
# inter-character spacing options # inter-character spacing options