lysdexic@programming.devM to C++@programming.devEnglish · 1 year agoOn harmful overuse of std::move - The Old New Thingdevblogs.microsoft.comexternal-linkmessage-square22fedilinkarrow-up130arrow-down11
arrow-up129arrow-down1external-linkOn harmful overuse of std::move - The Old New Thingdevblogs.microsoft.comlysdexic@programming.devM to C++@programming.devEnglish · 1 year agomessage-square22fedilink
minus-squarelysdexic@programming.devOPMlinkfedilinkEnglisharrow-up1·11 months agoIt doesn’t look like it, otherwise you’d be aware that the whole point of this submission is that casting return values with std::move disables RVO.
minus-squareDani (:cxx: modules addict)@hachyderm.iolinkfedilinkarrow-up1·11 months ago@lysdexic You claimed otherwise: " These std::move invocations are harmless, as they only cast objects to their rvalue reference. " If you were right, we wouldn’t have the motivation to look at this in EWG.
minus-squarelysdexic@programming.devOPMlinkfedilinkEnglisharrow-up1·11 months ago If you were right, we wouldn’t have the motivation to look at this in EWG. I am right. Not benefiting from RVO does not mean you’re harming anyone. Again, I recommend you read the submission and also the discussion.
It doesn’t look like it, otherwise you’d be aware that the whole point of this submission is that casting return values with
std::move
disables RVO.@lysdexic You claimed otherwise:
"
These std::move invocations are harmless, as they only cast objects to their rvalue reference.
"
If you were right, we wouldn’t have the motivation to look at this in EWG.
I am right. Not benefiting from RVO does not mean you’re harming anyone.
Again, I recommend you read the submission and also the discussion.