From 32e6453b0bd2992c186831f743e43d8a472362a3 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Mon, 17 Feb 2020 12:14:12 -0600 Subject: [PATCH] LibGfx: SystemTheme is a struct, not a class SystemTheme.h:81:1: error: 'SystemTheme' defined as a struct here but previously declared as a class; this is valid, but may result in linker errors under the Microsoft C++ ABI --- Libraries/LibGfx/Forward.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGfx/Forward.h b/Libraries/LibGfx/Forward.h index 2c03bc303d..c41c7bc21a 100644 --- a/Libraries/LibGfx/Forward.h +++ b/Libraries/LibGfx/Forward.h @@ -46,7 +46,7 @@ class Point; class Rect; class Size; class StylePainter; -class SystemTheme; +struct SystemTheme; class Triangle; enum class BitmapFormat;