Revert "[Tizen] Temporary fix, Will be removed later, Fix Emul crash issue"
authorWonsik Jung <sidein@samsung.com>
Tue, 27 Aug 2019 04:23:46 +0000 (13:23 +0900)
committerWonsik Jung <sidein@samsung.com>
Tue, 27 Aug 2019 04:24:18 +0000 (13:24 +0900)
This reverts commit 8c7a170ad7dc8528a44e20ea64d08b37b2b2838f.

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) )