Skip to content
Snippets Groups Projects
Commit e2b9b671 authored by Cenk Gündoğan's avatar Cenk Gündoğan
Browse files

Merge pull request #4481 from authmillenon/uncrustify/enh/ignore-return-parens

uncrustify: ignore parens on return
parents 4d7c068e e34f584b
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ nl_fdef_brace = add # "int foo() {" vs "int foo()\n{" ...@@ -28,7 +28,7 @@ nl_fdef_brace = add # "int foo() {" vs "int foo()\n{"
# Source code modifications # Source code modifications
# #
mod_paren_on_return = remove # "return 1;" vs "return (1);" mod_paren_on_return = ignore # "return 1;" vs "return (1);"
mod_full_brace_if = add # "if() { } else { }" vs "if() else" mod_full_brace_if = add # "if() { } else { }" vs "if() else"
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment