From d42f0f46616168bdff492f880b3ea432a49f7345 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 Feb 2020 01:27:25 +0100 Subject: [PATCH] AK: Add missing include in CircularQueue.h --- AK/CircularQueue.h | 1 + 1 file changed, 1 insertion(+) diff --git a/AK/CircularQueue.h b/AK/CircularQueue.h index 6184278ed0..2941958bde 100644 --- a/AK/CircularQueue.h +++ b/AK/CircularQueue.h @@ -27,6 +27,7 @@ #pragma once #include +#include #include namespace AK {