I would like to contribute #8876
Closed
Farioto
started this conversation in
New Users Build/Link/Run issues ONLY!
Replies: 1 comment 1 reply
-
Hello, thanks for the suggestions. I have pushed fixes as 1c57dc2. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi I'm new here I would like to help,
in imgui.cpp
Replace
with
Replace
with
That clears up
warning C33010 Unchecked lower bound for enum source used as index and warning C28182 Dereferencing NULL pointer. 'apply_focus_window' contains the same NULL value as 'g.NavWindow' did.
in imstb_truetype.h
Replace
with
That clears up
warning C26819 Unannotated fallthrough between switch labels (es.78). with an explicit fallthrough annotation between case 0x0A and case 0x1D in a switch block—using __fallthrough for MSVC and [[fallthrough]] for C++17
in imgui_widgets.cpp
Replace
with
That clears up
warning C6011 Dereferencing NULL pointer 'window'. using an early if (!window) return; guard.
fix these up and imgui should build without those issues anymore.
I would myself but I don't have permission
and I don't know where else to go,
Thats why I'm here.
Beta Was this translation helpful? Give feedback.
All reactions