Avoid clang/gcc warnings: -Wnontrivial-memaccess. (#8295)

This commit is contained in:
Arash Partow
2025-01-08 21:40:59 +11:00
committed by GitHub
parent 3cdf3f9411
commit 63649e0359

View File

@@ -1064,7 +1064,7 @@ struct ImGui_ImplGlfw_ViewportData
WNDPROC PrevWndProc;
#endif
ImGui_ImplGlfw_ViewportData() { memset(this, 0, sizeof(*this)); IgnoreWindowSizeEventFrame = IgnoreWindowPosEventFrame = -1; }
ImGui_ImplGlfw_ViewportData() { memset((void*)this, 0, sizeof(*this)); IgnoreWindowSizeEventFrame = IgnoreWindowPosEventFrame = -1; }
~ImGui_ImplGlfw_ViewportData() { IM_ASSERT(Window == nullptr); }
};