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

Merge pull request #5920 from 29jm/fix-warnings

Fix some more warnings
This commit is contained in:
Juan Linietsky
2016-09-10 12:21:02 -03:00
committed by GitHub
25 changed files with 60 additions and 61 deletions

View File

@@ -2094,7 +2094,7 @@ Error GDScriptLanguage::complete_code(const String& p_code, const String& p_base
GDParser p;
Error err = p.parse(p_code,p_base_path,false,"",true);
p.parse(p_code,p_base_path,false,"",true);
bool isfunction=false;
Set<String> options;