diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-07-07 23:27:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-07 23:27:42 +0200 |
commit | f1e1910ae435c255745773bf37a60d798f9412fb (patch) | |
tree | 7e028a2da14765378e5eee7f71b434bde5038705 /modules/gdscript/gd_functions.cpp | |
parent | 1b9433594ecc6c935c81e9030a6b52c7b56cb3a4 (diff) | |
parent | 454b210242ec15a9928324757f27989216bc5a59 (diff) | |
download | redot-engine-f1e1910ae435c255745773bf37a60d798f9412fb.tar.gz |
Merge pull request #5538 from akien-mga/pr-unused-var
Removed unused variables + dead code
Diffstat (limited to 'modules/gdscript/gd_functions.cpp')
-rw-r--r-- | modules/gdscript/gd_functions.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gd_functions.cpp b/modules/gdscript/gd_functions.cpp index ec66841662..b9815a5efd 100644 --- a/modules/gdscript/gd_functions.cpp +++ b/modules/gdscript/gd_functions.cpp @@ -502,7 +502,6 @@ void GDFunctions::call(Function p_func,const Variant **p_args,int p_arg_count,Va Ref<FuncRef> fr = memnew( FuncRef); - Object *obj = *p_args[0]; fr->set_instance(*p_args[0]); fr->set_function(*p_args[1]); |