mirror of
https://github.com/Drezil/imgui.git
synced 2025-04-01 00:42:45 +00:00
Merge pull request #1529 from unprompted/master
Fix a memory leak of ImGuiColumnsSet's Columns vector. ImVector doesn't call destructors.
This commit is contained in:
commit
bfc9c5216a
@ -1876,6 +1876,8 @@ ImGuiWindow::~ImGuiWindow()
|
||||
{
|
||||
IM_DELETE(DrawList);
|
||||
IM_DELETE(Name);
|
||||
for (int i = 0; i != ColumnsStorage.Size; i++)
|
||||
ColumnsStorage[i].~ImGuiColumnsSet();
|
||||
}
|
||||
|
||||
ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end)
|
||||
|
Loading…
x
Reference in New Issue
Block a user