From b47a3898b4b6cff28e13f8c268c179708f07ccad Mon Sep 17 00:00:00 2001 From: Brenton Bostick Date: Wed, 17 Jun 2026 06:51:54 -0400 Subject: [PATCH] Fixed unused parameter 'table'. (#9447, #9446) --- imgui_tables.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui_tables.cpp b/imgui_tables.cpp index 50bb3dba9..4459340fe 100644 --- a/imgui_tables.cpp +++ b/imgui_tables.cpp @@ -4255,7 +4255,7 @@ void ImGui::DebugNodeTableSettings(ImGuiTableSettings* settings, ImGuiTable* tab #else // #ifndef IMGUI_DISABLE_DEBUG_TOOLS void ImGui::DebugNodeTable(ImGuiTable*) {} -void ImGui::DebugNodeTableSettings(ImGuiTableSettings*, ImGuiTable* table) {} +void ImGui::DebugNodeTableSettings(ImGuiTableSettings*, ImGuiTable*) {} #endif