| Index: Source/core/rendering/style/CounterDirectives.h
|
| diff --git a/Source/core/rendering/style/CounterDirectives.h b/Source/core/rendering/style/CounterDirectives.h
|
| index fb29f85d7812109478b06a0016a9cbb25741b620..eb4347f481ae6a0954a94b9f23054a717455eee6 100644
|
| --- a/Source/core/rendering/style/CounterDirectives.h
|
| +++ b/Source/core/rendering/style/CounterDirectives.h
|
| @@ -68,7 +68,7 @@ public:
|
| int incrementValue() const { return m_incrementValue; }
|
| void addIncrementValue(int value)
|
| {
|
| - m_incrementValue = clampToInteger((double)m_incrementValue + value);
|
| + m_incrementValue = clampTo<int>((double)m_incrementValue + value);
|
| m_isIncrementSet = true;
|
| }
|
| void clearIncrement()
|
|
|