std::move(commit_params_->page_state));I'm kind of uncertain about this particular change. It's really an obfuscated way of saying "clear this if it's not empty"... so we could just write `commit_params_->page_state.empty()`. But that's also kind of a layering violation... so I just left it as-is and wrote a long comment.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
std::move(commit_params_->page_state));I'm kind of uncertain about this particular change. It's really an obfuscated way of saying "clear this if it's not empty"... so we could just write `commit_params_->page_state.empty()`. But that's also kind of a layering violation... so I just left it as-is and wrote a long comment.
Yeah, agreed with your assessment. The new comment helps clarify what's going on, at least.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |