Cleanup: Resolve clang tidy warning / error

This commit is contained in:
Hans Goudey 2020-08-11 14:58:01 -04:00
parent 2b6d4325ac
commit b0485d47ef
1 changed files with 3 additions and 5 deletions

View File

@ -280,11 +280,9 @@ void GPU_backend_init(eGPUBackendType backend_type)
void GPU_backend_exit(void)
{
if (g_backend) {
/* TODO assert no resource left. Currently UI textures are still not freed in their context
* correctly. */
delete g_backend;
}
/* TODO assert no resource left. Currently UI textures are still not freed in their context
* correctly. */
delete g_backend;
}
GPUBackend *gpu_backend_get(void)