From c6e0284ac58b3f205c95365478888f7b53b077e2 Mon Sep 17 00:00:00 2001 From: ocornut Date: Mon, 4 Sep 2023 15:16:55 +0200 Subject: [PATCH] Fixed minor warning. --- imgui_demo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui_demo.cpp b/imgui_demo.cpp index e3752b50b35d..ab529e379d67 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -4833,7 +4833,7 @@ static void ShowDemoWindowTables() ImGui::TableNextColumn(); ImGui::Text("CellPadding.y = %.2f", style.CellPadding.y); if ((row % 3) == 2) - ImGui::PopStyleVar();; + ImGui::PopStyleVar(); } ImGui::EndTable(); }