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

Allow warning-ignore in same line

(cherry picked from commit 3715ea268f)
This commit is contained in:
Marvin Ewald
2021-04-12 15:34:17 +02:00
committed by Rémi Verschelde
parent 337ef03958
commit a1af387177

View File

@@ -8769,7 +8769,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;