summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-08 14:06:22 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-08 14:06:22 +0200
commit567551bc12945c25b49c65579ceb545668dbb7eb (patch)
tree039596f5b6ea445ff3f90c14d698ca66ffbac303 /AK
parent5b1991102534ecce1784da6282b6ceced4687e3e (diff)
downloadserenity-567551bc12945c25b49c65579ceb545668dbb7eb.zip
AK: Add some missing includes in SinglyLinkedList.
Diffstat (limited to 'AK')
-rw-r--r--AK/SinglyLinkedList.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/AK/SinglyLinkedList.h b/AK/SinglyLinkedList.h
index 1760cdbb81..3fff790bc4 100644
--- a/AK/SinglyLinkedList.h
+++ b/AK/SinglyLinkedList.h
@@ -1,6 +1,7 @@
#pragma once
-#include "StdLibExtras.h"
+#include <AK/Assertions.h>
+#include <AK/StdLibExtras.h>
namespace AK {