From 69e55628c2f874ff187b4bb91b3d8fb79bbf25a1 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 23 May 2019 10:29:12 +0100 Subject: [PATCH] Handle all enum values in switch --- util/test/demos/test_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/util/test/demos/test_common.h b/util/test/demos/test_common.h index 71fc7f6f8..533400ded 100644 --- a/util/test/demos/test_common.h +++ b/util/test/demos/test_common.h @@ -214,6 +214,7 @@ struct TestMetadata case TestAPI::Vulkan: return "VK"; case TestAPI::OpenGL: return "GL"; case TestAPI::D3D12: return "D3D12"; + case TestAPI::Count: break; } return "???";