Mesa (master): anv: drop cast-to-void of used variable

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Aug 16 16:45:12 UTC 2018


Module: Mesa
Branch: master
Commit: 7a1f4340b647d9c4e4e62bd0cda620eb2d927cd9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7a1f4340b647d9c4e4e62bd0cda620eb2d927cd9

Author: Eric Engestrom <eric.engestrom at intel.com>
Date:   Thu Aug 16 15:47:13 2018 +0100

anv: drop cast-to-void of used variable

`device` is used 2 lines below, even visible in the diff context printed.

Signed-off-by: Eric Engestrom <eric.engestrom at intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>

---

 src/intel/vulkan/anv_device.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index 897249baa6..d8b67b54d6 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -1445,7 +1445,6 @@ VkResult anv_EnumerateDeviceExtensionProperties(
 {
    ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
    VK_OUTARRAY_MAKE(out, pProperties, pPropertyCount);
-   (void)device;
 
    for (int i = 0; i < ANV_DEVICE_EXTENSION_COUNT; i++) {
       if (device->supported_extensions.extensions[i]) {




More information about the mesa-commit mailing list