| Index: third_party/WebKit/Source/platform/Length.cpp
|
| diff --git a/third_party/WebKit/Source/platform/Length.cpp b/third_party/WebKit/Source/platform/Length.cpp
|
| index 1abe41bd4de77df22aa8c5c682fb6db3b6f615c0..00664f65f0ce4038e232a4a722f2645441ae8fbd 100644
|
| --- a/third_party/WebKit/Source/platform/Length.cpp
|
| +++ b/third_party/WebKit/Source/platform/Length.cpp
|
| @@ -95,7 +95,7 @@ Length::Length(PassRefPtr<CalculationValue> calc)
|
| , m_type(Calculated)
|
| , m_isFloat(false)
|
| {
|
| - m_intValue = calcHandles().insert(calc);
|
| + m_intValue = calcHandles().insert(std::move(calc));
|
| }
|
|
|
| Length Length::blendMixedTypes(const Length& from, double progress, ValueRange range) const
|
|
|