Fix a memory leak of ImGuiColumnsSet's Columns vector. ImVector doesn't call destructors.

features/sdl_renderer3_multiviewports
Cory McWilliams ago%!(EXTRA string=7 years)
parent 170bcb2d7c
commit 561e9f286e
  1. 2
      imgui.cpp

@ -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…
Cancel
Save