Merge pull request #47863 from mphe/same_line_warning_ignore

Allow warning-ignore in the same line as the respective warning
This commit is contained in:
Rémi Verschelde 2021-05-18 15:08:00 +02:00 committed by GitHub
commit 6355877c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8755,7 +8755,7 @@ Error GDScriptParser::_parse(const String &p_base_path) {
GDScriptWarning &w = E->get();
int skip_index = -1;
for (int i = 0; i < warning_skips.size(); i++) {
if (warning_skips[i].first >= w.line) {
if (warning_skips[i].first > w.line) {
break;
}
skip_index = i;