| 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 3249351d0016d6d39727d9ac505bb13071ecdedb..f62b17b7e17b2ea973621d5c17769c62482477b8 100644
|
| --- a/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/PairwiseInterpolationValue.h
|
| @@ -30,7 +30,7 @@ struct PairwiseInterpolationValue {
|
| PairwiseInterpolationValue(PairwiseInterpolationValue&& other)
|
| : startInterpolableValue(std::move(other.startInterpolableValue)),
|
| endInterpolableValue(std::move(other.endInterpolableValue)),
|
| - nonInterpolableValue(other.nonInterpolableValue.release()) {}
|
| + nonInterpolableValue(std::move(other.nonInterpolableValue)) {}
|
|
|
| operator bool() const { return startInterpolableValue.get(); }
|
|
|
|
|