From 73fe6c541abaa9663adb5211db5c47d5fe9c6a28 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 24 Sep 2021 19:03:46 +0200 Subject: [PATCH] LibGfx: Forward declare Gfx::FontMetrics as a struct --- Userland/Libraries/LibGfx/Forward.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/Forward.h b/Userland/Libraries/LibGfx/Forward.h index 2c4baeb033..95c7e37f95 100644 --- a/Userland/Libraries/LibGfx/Forward.h +++ b/Userland/Libraries/LibGfx/Forward.h @@ -14,9 +14,9 @@ class Color; class DisjointRectSet; class Emoji; class Font; -class FontMetrics; class GlyphBitmap; class ImageDecoder; +struct FontMetrics; template class Line;