1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-13 08:33:49 +01:00

uncrustify: replace deprecated nl_func_var_def_blk

The option is deprecated, it has been replaced by
nl_var_def_blk_end_func_top. This applies the change to our
configuration file.
This commit is contained in:
Leandro Lanzieri 2024-05-08 12:35:30 +02:00
parent 19effe1020
commit 43814b327d
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593

View File

@ -31,7 +31,7 @@ nl_while_brace = remove # "while () {" vs "while () \n {
nl_switch_brace = remove # "switch () {" vs "switch () \n {"
nl_brace_while = remove # "} while" vs "} \n while" - cuddle while
nl_brace_else = add # "} \n else" vs "} else"
nl_func_var_def_blk = 1 #
nl_var_def_blk_end_func_top = 1 #
nl_fcall_brace = remove # "list_for_each() {" vs "list_for_each()\n{"
nl_fdef_brace = add # "int foo() {" vs "int foo()\n{"
nl_collapse_empty_body = true # set while(){\n} to while(){}