mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-20 20:00:40 +00:00
Avoid clang/gcc warnings: -Wnontrivial-memaccess. (#8295)
This commit is contained in:
@@ -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); }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user