aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_compiler.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-01-14 18:03:38 +0100
committerRémi Verschelde2017-03-18 21:14:33 +0100
commitdbf013757658ad48bb61242ed69ad4145a946863 (patch)
tree578688f4bbdd6affa4239558c9251eea26a61611 /modules/gdscript/gd_compiler.cpp
parent75bf6a997875cab08866eb9e8ee6c75923fe8c96 (diff)
downloadgodot-dbf013757658ad48bb61242ed69ad4145a946863.tar.gz
godot-dbf013757658ad48bb61242ed69ad4145a946863.tar.zst
godot-dbf013757658ad48bb61242ed69ad4145a946863.zip
Style: Fix statements ending with ';;'
(cherry picked from commit f44ee891beaad397481dd88da41cb80e6539774f)
Diffstat (limited to 'modules/gdscript/gd_compiler.cpp')
-rw-r--r--modules/gdscript/gd_compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_compiler.cpp b/modules/gdscript/gd_compiler.cpp
index 50a13b9d0..e5cb70da6 100644
--- a/modules/gdscript/gd_compiler.cpp
+++ b/modules/gdscript/gd_compiler.cpp
@@ -1421,7 +1421,7 @@ Error GDCompiler::_parse_function(GDScript *p_script,const GDParser::ClassNode *
//funciton and class
if (p_class->name) {
- signature+="::"+String(p_class->name)+"."+String(func_name);;
+ signature+="::"+String(p_class->name)+"."+String(func_name);
} else {
signature+="::"+String(func_name);
}