| Index: third_party/WebKit/Source/core/animation/InterpolationValue.h
|
| diff --git a/third_party/WebKit/Source/core/animation/InterpolationValue.h b/third_party/WebKit/Source/core/animation/InterpolationValue.h
|
| index 71a7010275b2456281e7f71c614d2c0eb26ff447..42b2b39b4f71d480fb7b11a07f6e806dcf850d7e 100644
|
| --- a/third_party/WebKit/Source/core/animation/InterpolationValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/InterpolationValue.h
|
| @@ -24,13 +24,13 @@ struct InterpolationValue {
|
| InterpolationValue(std::nullptr_t) { }
|
|
|
| InterpolationValue(InterpolationValue&& other)
|
| - : interpolableValue(other.interpolableValue.release())
|
| + : interpolableValue(std::move(other.interpolableValue))
|
| , nonInterpolableValue(other.nonInterpolableValue.release())
|
| { }
|
|
|
| void operator=(InterpolationValue&& other)
|
| {
|
| - interpolableValue = other.interpolableValue.release();
|
| + interpolableValue = std::move(other.interpolableValue);
|
| nonInterpolableValue = other.nonInterpolableValue.release();
|
| }
|
|
|
|
|