Merge pull request #54350 from akien-mga/clang-format-dont-align-operands

This commit is contained in:
Rémi Verschelde 2021-10-28 17:10:52 +02:00 committed by GitHub
commit f7d852b532
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
135 changed files with 1051 additions and 1183 deletions

View file

@ -3068,9 +3068,9 @@ void GDScriptParser::get_class_doc_comment(int p_line, String &p_brief, String &
} else {
/* Syntax:
@tutorial ( The Title Here ) : https://the.url/
^ open ^ close ^ colon ^ url
*/
* @tutorial ( The Title Here ) : https://the.url/
* ^ open ^ close ^ colon ^ url
*/
int open_bracket_pos = begin_scan, close_bracket_pos = 0;
while (open_bracket_pos < striped_line.length() && (striped_line[open_bracket_pos] == ' ' || striped_line[open_bracket_pos] == '\t')) {
open_bracket_pos++;