summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/gdnative/vector2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdnative/gdnative/vector2.cpp')
-rw-r--r--modules/gdnative/gdnative/vector2.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdnative/gdnative/vector2.cpp b/modules/gdnative/gdnative/vector2.cpp
index dc273e7951..b6c3569f42 100644
--- a/modules/gdnative/gdnative/vector2.cpp
+++ b/modules/gdnative/gdnative/vector2.cpp
@@ -38,7 +38,6 @@ extern "C" {
#endif
void GDAPI godot_vector2_new(godot_vector2 *r_dest, const godot_real p_x, const godot_real p_y) {
-
Vector2 *dest = (Vector2 *)r_dest;
*dest = Vector2(p_x, p_y);
}