From 8634820e7341bb7d9f1ca046bac127c2f095f282 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Sat, 9 Dec 2023 17:37:37 +0100 Subject: [PATCH] LibGfx: Use east-mutable style in OpenType font class No intended behavior change. --- Userland/Libraries/LibGfx/Font/OpenType/Font.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Userland/Libraries/LibGfx/Font/OpenType/Font.h b/Userland/Libraries/LibGfx/Font/OpenType/Font.h index 97c3b5add3b..a424277101e 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;