summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_editor.cpp
diff options
context:
space:
mode:
authorJohan Manuel <johan.manuel@live.fr>2016-07-26 15:04:16 +0200
committerJohan Manuel <johan.manuel@live.fr>2016-08-13 13:21:35 +0200
commit046f94d3acc9d4f6465fe05ae8ee3fbd315b23d2 (patch)
tree62cd7fb3316947d7b253d44a34ae67067b6e304d /modules/gdscript/gd_editor.cpp
parent8c0a050d49fdc7d922f6b854f0a11ae4bdf1462e (diff)
downloadredot-engine-046f94d3acc9d4f6465fe05ae8ee3fbd315b23d2.tar.gz
Remove some unused variables
Diffstat (limited to 'modules/gdscript/gd_editor.cpp')
-rw-r--r--modules/gdscript/gd_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp
index 520a8b18d8..0af5897b41 100644
--- a/modules/gdscript/gd_editor.cpp
+++ b/modules/gdscript/gd_editor.cpp
@@ -2067,7 +2067,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;