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:
@@ -1437,12 +1437,12 @@ HTMLSelectElement::SaveState()
|
||||
if (value.IsEmpty()) {
|
||||
state.indices().AppendElement(optIndex);
|
||||
} else {
|
||||
state.values().AppendElement(Move(value));
|
||||
state.values().AppendElement(std::move(value));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
presState->contentData() = Move(state);
|
||||
presState->contentData() = std::move(state);
|
||||
|
||||
if (mDisabledChanged) {
|
||||
// We do not want to save the real disabled state but the disabled
|
||||
|
||||
Reference in New Issue
Block a user