PROP 65
PROP 65
This should have been fixed in #682, but I forgot to rebuild nuklear.h at the time. It's been rebuilt since, so this issue should be resolved.
I'm not sure why `endptr` was made `const` to begin with (I checked the git blame and I belive Cong made the change in `2e4db87` after vurtun fixed it in...
We could try to prevent problems like this by adding a rule to the [Reviewers guide](https://github.com/Immediate-Mode-UI/Nuklear?tab=readme-ov-file#reviewers-guide) stating implementations of libc functions must have an equivalent signature.
Where is your `nk_popup_end` call? ```c if (nk_popup_begin(ctx, NK_POPUP_STATIC, "Example", 0, bounds)) { nk_layout_row_dynamic(ctx, 20, 1); nk_label(ctx, "Example", NK_TEXT_LEFT); /* Is it in the braces */ } /* or outside...
Are you using `nk_popup_*` or `nk_tooltip_*`? Could you post the code of the window with the popup/tooltip?
`nk_popup_begin` is failing without begin caught. If you change your tooltip code to ```c if (nk_widget_is_hovered(ctx) && nk_tooltip_begin(ctx, 450)) { nk_layout_row_dynamic(ctx, 25, 1); nk_label(ctx, "Your password MUST:", NK_TEXT_LEFT); nk_labelf(ctx, NK_TEXT_LEFT,...
These may help https://github.com/vurtun/nuklear/issues/386 https://github.com/vurtun/nuklear/issues/897
Here's a test program to check for warnings. https://gist.github.com/PROP65/88cf2ec23a5052350f2e79857dd9fd8e