зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1266868, part 3 - Avoid Maybe::ref() where not necessary. r=dholbert
This commit is contained in:
Родитель
aa8b43ad6e
Коммит
23c872cc11
|
@ -2414,7 +2414,7 @@ StyleAnimationValue::AddWeighted(nsCSSProperty aProperty,
|
|||
}
|
||||
|
||||
// We need a heap allocated object to adopt here:
|
||||
auto heapResult = MakeUnique<nsCSSValuePair>(result.ref());
|
||||
auto heapResult = MakeUnique<nsCSSValuePair>(*result);
|
||||
aResultValue.SetAndAdoptCSSValuePairValue(heapResult.release(),
|
||||
eUnit_CSSValuePair);
|
||||
return true;
|
||||
|
|
Загрузка…
Ссылка в новой задаче