From f25676dea1f45c1575f40a45f42346117983da4b Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Thu, 19 Sep 2024 17:04:57 +0200 Subject: [PATCH] LibWeb: Remove workaround for header conflict in DisplayListPlayerSkia No longer needed after we added AK prefix for Duration and FixedPoint. --- Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp b/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp index 0f557aa8d82..b202b81475c 100644 --- a/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp +++ b/Userland/Libraries/LibWeb/Painting/DisplayListPlayerSkia.cpp @@ -37,13 +37,9 @@ #endif #ifdef AK_OS_MACOS -# define FixedPoint FixedPointMacOS -# define Duration DurationMacOS # include # include # include -# undef FixedPoint -# undef Duration #endif namespace Web::Painting {