1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

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

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;