1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-18 01:14:19 +00:00

Fix Clang 9.0 zealous warnings

This commit is contained in:
Omar 2020-02-17 15:29:59 +01:00
parent ceec3cd3fd
commit 09329ea4e6
3 changed files with 6 additions and 6 deletions

View file

@ -629,7 +629,7 @@ static void ShowDemoWindowWidgets()
{
ImGui::Text("blah blah");
ImGui::SameLine();
if (ImGui::SmallButton("button")) {};
if (ImGui::SmallButton("button")) {}
ImGui::TreePop();
}
}