From 12cb0919f406aeb20f63f83f7ea52828e50db8c8 Mon Sep 17 00:00:00 2001 From: Joogab Yun Date: Mon, 16 Sep 2019 15:25:10 +0900 Subject: [PATCH] Revert "[Tizen] Temporary fix, Will be removed later, Fix Emul crash issue" This reverts commit 9195353f93b25c5ef04c35dad3405a2afff80a7a. --- dali/public-api/math/vector3.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dali/public-api/math/vector3.cpp b/dali/public-api/math/vector3.cpp index 3514958..2b410d0 100644 --- a/dali/public-api/math/vector3.cpp +++ b/dali/public-api/math/vector3.cpp @@ -97,16 +97,6 @@ Vector3& Vector3::operator*=(const Quaternion& rhs) return *this; } -// Temporary fix, Will be removed later, Fix Emul crash issue -#ifndef _ARCH_ARM_ -#undef fabsf -float fabsf(float value) -{ - if (value < 0) return -value; - return value; -} -#endif - bool Vector3::operator==(const Vector3& rhs) const { if (fabsf(x - rhs.x) > GetRangedEpsilon(x, rhs.x) ) -- 2.7.4