From e10183a6c5f840ba979c94ae4b6e1f7721114d2e Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 20 May 2020 14:13:39 +0200 Subject: [PATCH] AK: Include Platform.h in RefCounted.h so we have ALWAYS_INLINE Otherwise Lagom doesn't build on my host machine. --- AK/RefCounted.h | 1 + 1 file changed, 1 insertion(+) diff --git a/AK/RefCounted.h b/AK/RefCounted.h index 0cf359d98ad..361e6012861 100644 --- a/AK/RefCounted.h +++ b/AK/RefCounted.h @@ -27,6 +27,7 @@ #pragma once #include +#include #include namespace AK {