Backends: fixed misc zealous Clang warnings.

This commit is contained in:
ocornut
2025-11-18 16:34:35 +01:00
parent 9afc62d087
commit 6ae32c696a
4 changed files with 15 additions and 8 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ struct ImGui_ImplDX12_InitInfo
D3D12_GPU_DESCRIPTOR_HANDLE LegacySingleSrvGpuDescriptor;
#endif
ImGui_ImplDX12_InitInfo() { memset((void*)this, 0, sizeof(*this)); }
ImGui_ImplDX12_InitInfo() { memset(this, 0, sizeof(*this)); }
};
// Follow "Getting Started" link and check examples/ folder to learn about using backends!