| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
std::string message_id = message->message_id;nit: just pass `message->message_id` to `OnIncomingMessage` to avoid unnecessary copy.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
std::string message_id = message->message_id;nit: just pass `message->message_id` to `OnIncomingMessage` to avoid unnecessary copy.
Interestingly I had this problem in a previous CL where I tried both referencing a member and std::moving'ing the instance in the same function invocation. This worked fine on posix (meaning no crash) but the Windows binary crashed when the code was executed. My guess is that it depends on which way the values are pushed on the stack for the fn call.
I would prefer fixing this in a follow-up where OrderedMessageQueue reads message_id from PendingMessage.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Remove XmlElement-based SendIq methods in IqSender
Yet another CL in a long line of refactoring CLs which aim to
remove the XmlElement dependency from the myriad signaling and
protocol classes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |