diff options
author | Michele Calgaro <[email protected]> | 2023-12-01 12:38:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-01 12:38:43 +0900 |
commit | b67b7f2b784c7105e88a5e639d9d84736ae2cbc1 (patch) | |
tree | 0fd16d439c681c07d57d7f0d544c7582e04c3a31 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/htdocs/options_Align.html | |
parent | c0a6f1b84c84749908961579b84513fd9f9d9eac (diff) | |
download | extra-dependencies-b67b7f2b784c7105e88a5e639d9d84736ae2cbc1.tar.gz extra-dependencies-b67b7f2b784c7105e88a5e639d9d84736ae2cbc1.zip |
uncrustify-trinity: updated based on upstream version 0.78.1
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/htdocs/options_Align.html')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/htdocs/options_Align.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/htdocs/options_Align.html b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/htdocs/options_Align.html new file mode 100644 index 00000000..47b28230 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/htdocs/options_Align.html @@ -0,0 +1,40 @@ +#define SUCCESS 0 + █ +align_pp_define_gap +The minimum space between label and value of a preprocessor define + +align_nl_cont = 1 + +#define LOG_STR(sev, str, len) \ + if (log_sev_on(sev)) { log_str(sev, str, len); } + █ +nl_after_brace_close + + +extern struct cp_data cpd; + +extern bool QT_SIGNAL_SLOT_found; +extern int QT_SIGNAL_SLOT_level; +extern bool restoreValues; +align_var_def_span █ + +enum argval_t +{ + AV_IGNORE = 0, + AV_ADD = 1, + AV_REMOVE = 2, + AV_FORCE = 3, /**< remove + add */ + AV_NOT_DEFINED = 4 /* to be used with QT, SIGNAL SLOT macros */ +}; + █ +align_var_struct_span + + + UO_indent_var_def_blk, // indent a variable def block that appears at the top + UO_indent_var_def_cont, + UO_indent_shift, // if a shift expression spans multiple lines, indent + + UO_indent_min_vbrace_open, // min. indent after virtual brace open and newline + UO_indent_vbrace_open_on_tabstop, // when identing after virtual brace open and newline add further spaces to reach next tabstop + +align_right_cmt_span |