Sjmarf@sh.itjust.works to Programming Horror · 2 年前mallocPlusAIsh.itjust.worksimagemessage-square32linkfedilinkarrow-up1264arrow-down12
arrow-up1262arrow-down1imagemallocPlusAIsh.itjust.worksSjmarf@sh.itjust.works to Programming Horror · 2 年前message-square32linkfedilink
minus-squarezaphod@sopuli.xyzlinkfedilinkarrow-up14arrow-down1·2 年前You don’t need to cast the return value from malloc.
minus-squareaddie@feddit.uklinkfedilinkarrow-up11arrow-down1·2 年前True. Although given how easy it is to cast void pointers to the wrong damn thing, it would be nice if you did, makes refactoring much easier. Makes me appreciate std::any all the more.
minus-squareembed_melinkfedilinkarrow-up3·2 年前Void pointer should be avoided anyways. Even I find them rare and I mostly work in embedded RTOS
minus-squareSubverb@lemmy.worldlinkfedilinkarrow-up7·2 年前This isn’t malloc though. I have to assume the cast is because the user has experience with the output from an LLM being untrustworthy.
minus-squarevrighter@discuss.tchncs.delinkfedilinkarrow-up1·2 年前that is besides the point. You can still call malloc, it will still return void*, and it would still reqoire casting in c++
You don’t need to cast the return value from malloc.
True. Although given how easy it is to cast void pointers to the wrong damn thing, it would be nice if you did, makes refactoring much easier. Makes me appreciate
std::anyall the more.Void pointer should be avoided anyways. Even I find them rare and I mostly work in embedded RTOS
This isn’t malloc though. I have to assume the cast is because the user has experience with the output from an LLM being untrustworthy.
you do in c++, no?
In c++ you should use
new.that is besides the point. You can still call malloc, it will still return void*, and it would still reqoire casting in c++