summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-16 01:27:25 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-16 01:27:25 +0100
commitd42f0f46616168bdff492f880b3ea432a49f7345 (patch)
tree9ed2392951e341ceab77f21e5f1c2eb828634a12 /AK
parent1f550794885b9ab35207912edf47b85c773293dc (diff)
downloadserenity-d42f0f46616168bdff492f880b3ea432a49f7345.zip
AK: Add missing include in CircularQueue.h
Diffstat (limited to 'AK')
-rw-r--r--AK/CircularQueue.h1
1 files changed, 1 insertions, 0 deletions
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 <AK/Assertions.h>
+#include <AK/StdLibExtras.h>
#include <AK/Types.h>
namespace AK {