From 61ad239ee07c9c2db37df93ca43f0d168c973099 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sun, 19 Sep 2021 16:33:38 -0600 Subject: [PATCH] AK: Remove unnecessary include of for non-`__serenity__` builds We already include `` in AK/kmalloc.h when KERNEL is not defined, which applies to all non-`__serenity__` builds. --- AK/Vector.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/AK/Vector.h b/AK/Vector.h index 33908c81fa1..f903059c881 100644 --- a/AK/Vector.h +++ b/AK/Vector.h @@ -19,10 +19,6 @@ #include #include -#ifndef __serenity__ -# include -#endif - namespace AK { namespace Detail {