diff --git a/Userland/Libraries/LibGfx/Font/OpenType/Font.h b/Userland/Libraries/LibGfx/Font/OpenType/Font.h index 97c3b5add3..a424277101 100644 --- a/Userland/Libraries/LibGfx/Font/OpenType/Font.h +++ b/Userland/Libraries/LibGfx/Font/OpenType/Font.h @@ -132,11 +132,11 @@ private: }; // Fast cache for GlyphPage #0 (code points 0-255) to avoid hash lookups for all of ASCII and Latin-1. - mutable OwnPtr m_glyph_page_zero; + OwnPtr mutable m_glyph_page_zero; - mutable HashMap> m_glyph_pages; + HashMap> mutable m_glyph_pages; - mutable HashMap m_kerning_cache; + HashMap mutable m_kerning_cache; Optional mutable m_family; Optional mutable m_width;