Revert "[Tizen] Temporary fix, Will be removed later, Fix Emul crash issue"
authorJoogab Yun <joogab.yun@samsung.com>
Tue, 10 Sep 2019 08:58:40 +0000 (17:58 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Tue, 10 Sep 2019 08:58:40 +0000 (17:58 +0900)
This reverts commit 2bdf0247f08fab6cee2d25549eb4682547b260e2.

dali/public-api/math/vector3.cpp

index 3514958..2b410d0 100644 (file)
@@ -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) )