Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
This was done automatically replacing: s/mozilla::Move/std::move/ s/ Move(/ std::move(/ s/(Move(/(std::move(/ Removing the 'using mozilla::Move;' lines. And then with a few manual fixups, see the bug for the split series.. MozReview-Commit-ID: Jxze3adipUh
This commit is contained in:
@@ -191,7 +191,7 @@ ThreadStackHelper::TryAppendFrame(HangEntry aFrame)
|
||||
|
||||
// Perform the append if we have enough space to do so.
|
||||
if (mStackToFill->stack().Capacity() > mStackToFill->stack().Length()) {
|
||||
mStackToFill->stack().AppendElement(mozilla::Move(aFrame));
|
||||
mStackToFill->stack().AppendElement(std::move(aFrame));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user