| Index: sky/engine/core/animation/animatable/AnimatableLengthPoint3D.cpp
|
| diff --git a/sky/engine/core/animation/animatable/AnimatableLengthPoint3D.cpp b/sky/engine/core/animation/animatable/AnimatableLengthPoint3D.cpp
|
| index 2aaf3bac97bb1f1549ac9d0c0a6eeb79b94a7c33..0d05ca961d5afec80987748215ce0c732c00208c 100644
|
| --- a/sky/engine/core/animation/animatable/AnimatableLengthPoint3D.cpp
|
| +++ b/sky/engine/core/animation/animatable/AnimatableLengthPoint3D.cpp
|
| @@ -48,12 +48,4 @@ bool AnimatableLengthPoint3D::equalTo(const AnimatableValue* value) const
|
| return x()->equals(lengthPoint->x()) && y()->equals(lengthPoint->y()) && z()->equals(lengthPoint->z());
|
| }
|
|
|
| -void AnimatableLengthPoint3D::trace(Visitor* visitor)
|
| -{
|
| - visitor->trace(m_x);
|
| - visitor->trace(m_y);
|
| - visitor->trace(m_z);
|
| - AnimatableValue::trace(visitor);
|
| -}
|
| -
|
| }
|
|
|