| Index: Source/core/animation/AnimationStack.h
|
| diff --git a/Source/core/animation/AnimationStack.h b/Source/core/animation/AnimationStack.h
|
| index e6e28f689732469af295459b0c30fda9191aeb22..b046cd4c46d0e90093617459c2f0536a652a47ec 100644
|
| --- a/Source/core/animation/AnimationStack.h
|
| +++ b/Source/core/animation/AnimationStack.h
|
| @@ -47,7 +47,7 @@ public:
|
| void remove(Animation* animation)
|
| {
|
| size_t position = m_activeAnimations.find(animation);
|
| - ASSERT(position != notFound);
|
| + ASSERT(position != kNotFound);
|
| m_activeAnimations.remove(position);
|
| }
|
| bool isEmpty() const { return m_activeAnimations.isEmpty(); }
|
|
|