summaryrefslogtreecommitdiff
path: root/Libraries/LibGfx/Forward.h
diff options
context:
space:
mode:
authorjoshua stein <jcs@jcs.org>2020-02-17 12:14:12 -0600
committerAndreas Kling <kling@serenityos.org>2020-02-25 15:32:58 +0100
commit32e6453b0bd2992c186831f743e43d8a472362a3 (patch)
tree6753b325e8ee46753235bb57b82c3a5c31d0b990 /Libraries/LibGfx/Forward.h
parent960cae924a05211190378f163807a08f3e0ca3b6 (diff)
downloadserenity-32e6453b0bd2992c186831f743e43d8a472362a3.zip
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
Diffstat (limited to 'Libraries/LibGfx/Forward.h')
-rw-r--r--Libraries/LibGfx/Forward.h2
1 files changed, 1 insertions, 1 deletions
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;