Revert "[Tizen] Temporary fix, Will be removed later, Fix Emul crash issue"
authorHeeyong Song <heeyong.song@samsung.com>
Wed, 20 Nov 2019 07:20:55 +0000 (16:20 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Wed, 20 Nov 2019 07:20:57 +0000 (16:20 +0900)
This reverts commit c9705a91dc9a955d227474f8a377c1a7f9a29bb0.

Change-Id: Ifc3c448cbd7ecb8a6d5d4cf6ca45c3fbffb00e0b

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