From 80003ecc09011114838059b17a302ca883ae9ab7 Mon Sep 17 00:00:00 2001 From: Undefine Date: Wed, 13 Aug 2025 16:16:35 +0200 Subject: [PATCH] AK: Remove unused __ptrdiff_t declaration The project compiles just fine without and this seems a remnant from SerenityOS. --- AK/Types.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/AK/Types.h b/AK/Types.h index ef037a9c10..104679f17e 100644 --- a/AK/Types.h +++ b/AK/Types.h @@ -134,10 +134,6 @@ using pid_t = int; # include # include -# ifdef __ptrdiff_t -using __ptrdiff_t = __PTRDIFF_TYPE__; -# endif - # if defined(AK_OS_WINDOWS) using ssize_t = AK::Detail::MakeSigned; using mode_t = unsigned short;