cake icon indicating copy to clipboard operation
cake copied to clipboard

[[nodiscard]] not working with pointers

Open thradams opened this issue 1 year ago • 0 comments

works

[[nodiscard]] int malloc(int size);

don't work

[[nodiscard]] int * malloc(int size);

thradams avatar Jul 02 '23 23:07 thradams