| Index: third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
|
| diff --git a/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h b/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
|
| index 0d16dd897542e4ddb552b6e54080121e7a07b30d..6f1d96c2efb10e5debc536a87a52c564737b6b70 100644
|
| --- a/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
|
| @@ -24,8 +24,8 @@ struct PairwiseInterpolationValue {
|
| PairwiseInterpolationValue(std::nullptr_t) { }
|
|
|
| PairwiseInterpolationValue(PairwiseInterpolationValue&& other)
|
| - : startInterpolableValue(other.startInterpolableValue.release())
|
| - , endInterpolableValue(other.endInterpolableValue.release())
|
| + : startInterpolableValue(std::move(other.startInterpolableValue))
|
| + , endInterpolableValue(std::move(other.endInterpolableValue))
|
| , nonInterpolableValue(other.nonInterpolableValue.release())
|
| { }
|
|
|
|
|