mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
Avoid clang/gcc warnings: -Wnontrivial-memaccess. (#8295)
This commit is contained in:
parent
3cdf3f9411
commit
63649e0359
1 changed files with 1 additions and 1 deletions
|
@ -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); }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue