Sjmarf to Programming [email protected] • 1 month agomallocPlusAIsh.itjust.worksimagemessage-square32fedilinkarrow-up1253arrow-down12
arrow-up1251arrow-down1imagemallocPlusAIsh.itjust.worksSjmarf to Programming [email protected] • 1 month agomessage-square32fedilink
minus-square@[email protected]linkfedilink13•1 month agoYou don’t need to cast the return value from malloc.
minus-square@[email protected]linkfedilink10•1 month agoTrue. 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-square@[email protected]linkfedilink3•edit-21 month agoVoid pointer should be avoided anyways. Even I find them rare and I mostly work in embedded RTOS
minus-squareSubverblink6•edit-21 month agoThis 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-square@[email protected]linkfedilink1•1 month agothat 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::any
all 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++