Browse Source

Merge pull request #47863 from mphe/same_line_warning_ignore

Allow warning-ignore in the same line as the respective warning
Rémi Verschelde 4 years ago
parent
commit
6355877c0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/gdscript/gdscript_parser.cpp

+ 1 - 1
modules/gdscript/gdscript_parser.cpp

@@ -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;