mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-01-28 13:05:02 -08:00
build: Enable -Wimplicit-fallthrough.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0184917520
commit
8b49b6e057
@ -44,6 +44,7 @@ AS_IF([test "x${GCC}" = "xyes"],
|
|||||||
[VKD3D_CFLAGS="-Wall -pipe"
|
[VKD3D_CFLAGS="-Wall -pipe"
|
||||||
VKD3D_CHECK_CFLAGS([-std=c99])
|
VKD3D_CHECK_CFLAGS([-std=c99])
|
||||||
VKD3D_CHECK_CFLAGS([-Wdeclaration-after-statement])
|
VKD3D_CHECK_CFLAGS([-Wdeclaration-after-statement])
|
||||||
|
VKD3D_CHECK_CFLAGS([-Wimplicit-fallthrough])
|
||||||
VKD3D_CHECK_CFLAGS([-Wmissing-prototypes])
|
VKD3D_CHECK_CFLAGS([-Wmissing-prototypes])
|
||||||
VKD3D_CHECK_CFLAGS([-Wunused-but-set-parameter])
|
VKD3D_CHECK_CFLAGS([-Wunused-but-set-parameter])
|
||||||
VKD3D_CHECK_CFLAGS([-Wvla])
|
VKD3D_CHECK_CFLAGS([-Wvla])
|
||||||
|
@ -702,10 +702,12 @@ HRESULT hresult_from_vk_result(VkResult vr)
|
|||||||
return S_OK;
|
return S_OK;
|
||||||
case VK_ERROR_OUT_OF_DEVICE_MEMORY:
|
case VK_ERROR_OUT_OF_DEVICE_MEMORY:
|
||||||
WARN("Out of device memory.\n");
|
WARN("Out of device memory.\n");
|
||||||
|
/* fall-through */
|
||||||
case VK_ERROR_OUT_OF_HOST_MEMORY:
|
case VK_ERROR_OUT_OF_HOST_MEMORY:
|
||||||
return E_OUTOFMEMORY;
|
return E_OUTOFMEMORY;
|
||||||
default:
|
default:
|
||||||
FIXME("Unhandled VkResult %d.\n", vr);
|
FIXME("Unhandled VkResult %d.\n", vr);
|
||||||
|
/* fall-through */
|
||||||
case VK_ERROR_DEVICE_LOST:
|
case VK_ERROR_DEVICE_LOST:
|
||||||
case VK_ERROR_EXTENSION_NOT_PRESENT:
|
case VK_ERROR_EXTENSION_NOT_PRESENT:
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user