From 67a4cb7d8a4461fe7d5206189fd4e9539beb20b7 Mon Sep 17 00:00:00 2001 From: Loïc Blot Date: Tue, 3 Apr 2018 18:16:17 +0200 Subject: Fix various clang-tidy reported performance-type-promotion-in-math-fn --- src/content_sao.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/content_sao.cpp') diff --git a/src/content_sao.cpp b/src/content_sao.cpp index 0e0c19fce..8f77d54c4 100644 --- a/src/content_sao.cpp +++ b/src/content_sao.cpp @@ -30,6 +30,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "genericobject.h" #include "settings.h" #include +#include std::map ServerActiveObject::m_types; @@ -411,8 +412,8 @@ void LuaEntitySAO::step(float dtime, bool send_recommended) float move_d = m_base_position.getDistanceFrom(m_last_sent_position); move_d += m_last_sent_move_precision; float vel_d = m_velocity.getDistanceFrom(m_last_sent_velocity); - if(move_d > minchange || vel_d > minchange || - fabs(m_yaw - m_last_sent_yaw) > 1.0){ + if (move_d > minchange || vel_d > minchange || + std::fabs(m_yaw - m_last_sent_yaw) > 1.0) { sendPosition(true, false); } } -- cgit v1.2.3