diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-16 01:27:25 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-16 01:27:25 +0100 |
commit | d42f0f46616168bdff492f880b3ea432a49f7345 (patch) | |
tree | 9ed2392951e341ceab77f21e5f1c2eb828634a12 /AK | |
parent | 1f550794885b9ab35207912edf47b85c773293dc (diff) | |
download | serenity-d42f0f46616168bdff492f880b3ea432a49f7345.zip |
AK: Add missing include in CircularQueue.h
Diffstat (limited to 'AK')
-rw-r--r-- | AK/CircularQueue.h | 1 |
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 { |