Index: Source/core/animation/Interpolation.cpp |
diff --git a/Source/core/animation/Interpolation.cpp b/Source/core/animation/Interpolation.cpp |
index 2415798a877bc2a312efd41b11a1bdcac155ae45..b1aaee7cc40da8ffb9c617dc4173d0b7b1fba886 100644 |
--- a/Source/core/animation/Interpolation.cpp |
+++ b/Source/core/animation/Interpolation.cpp |
@@ -7,8 +7,6 @@ |
namespace blink { |
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Interpolation); |
- |
namespace { |
bool typesMatch(const InterpolableValue* start, const InterpolableValue* end) |
@@ -44,6 +42,10 @@ Interpolation::Interpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, Pa |
RELEASE_ASSERT(typesMatch(m_start.get(), m_end.get())); |
} |
+Interpolation::~Interpolation() |
+{ |
+} |
+ |
void Interpolation::interpolate(int iteration, double fraction) const |
{ |
if (m_cachedFraction != fraction || m_cachedIteration != iteration) { |