From 60454a4e990e2469846cfa07cf495a4bf5751207 Mon Sep 17 00:00:00 2001 From: Jesse Natalie Date: Wed, 18 Nov 2020 18:19:13 -0800 Subject: [PATCH] gallium: Remove unnecessary forward declaration of swrast_driver_descriptor MSVC complains that the definition has __declspec(dllexport) but the forward declaration doesn't. I can't find any users of this decl in the header. Reviewed-by: Francisco Jerez Reviewed-by: Karol Herbst Part-of: --- src/gallium/include/frontend/sw_driver.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/include/frontend/sw_driver.h b/src/gallium/include/frontend/sw_driver.h index 1d59bd5fe56..ca335556311 100644 --- a/src/gallium/include/frontend/sw_driver.h +++ b/src/gallium/include/frontend/sw_driver.h @@ -16,6 +16,4 @@ struct sw_driver_descriptor } winsys[]; }; -extern const struct sw_driver_descriptor swrast_driver_descriptor; - #endif