From bbd21c22030c85d098fa79ee69f78803a86c15ba Mon Sep 17 00:00:00 2001 From: Marcelo Fernandez Date: Thu, 22 Mar 2018 13:26:04 -0300 Subject: [PATCH] Fix for clang warning at distance_to --- core/math/math_2d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/math_2d.h b/core/math/math_2d.h index 02d921b67e27..e7188da85b9b 100644 --- a/core/math/math_2d.h +++ b/core/math/math_2d.h @@ -303,7 +303,7 @@ struct Rect2 { inline real_t distance_to(const Vector2 &p_point) const { - real_t dist; + real_t dist = 0.0; bool inside = true; if (p_point.x < position.x) {