Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
Jeff "never puts away anything, especially oven mitts" Cliff, Bringer of Nightmares 🏴☠️🦝🐙 🇱🇧🧯 🇨🇦🐧 (jeffcliff@shitposter.world)'s status on Wednesday, 22-Jan-2025 10:06:18 JSTJeff "never puts away anything, especially oven mitts" Cliff, Bringer of Nightmares 🏴☠️🦝🐙 🇱🇧🧯 🇨🇦🐧 works:
int returnval = (result == CPNATIVE_OK ? 1 : 0);
return returnval;
doesn't work:
return result == CPNATIVE_OK ? 1 : 0;
is it possible that ? : is somehow taking precedence over == but only when i compile java?