qaz@lemmy.world to Programmer Humor@lemmy.mlEnglish · 1 year agoWorse than single letterslemmy.worldimagemessage-square39fedilinkarrow-up1321arrow-down116
arrow-up1305arrow-down1imageWorse than single letterslemmy.worldqaz@lemmy.world to Programmer Humor@lemmy.mlEnglish · 1 year agomessage-square39fedilink
minus-squareschnurrito@discuss.tchncs.delinkfedilinkarrow-up29·1 year ago“result” is fine. That is the variable you will end up returning that you have to fill with stuff first. “data” on the other hand…
minus-squareHal_Canary@lemmy.sdf.orglinkfedilinkEnglisharrow-up4·1 year agoI came here to say this. Declare result in the first line of the function and return result is the last line. In C++, this is a big hint to the compiler that you want return value optimization to kick in.
“result” is fine. That is the variable you will end up returning that you have to fill with stuff first.
“data” on the other hand…
I came here to say this.
Declare
result
in the first line of the function andreturn result
is the last line. In C++, this is a big hint to the compiler that you want return value optimization to kick in.