diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-08 14:06:22 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-08 14:06:22 +0200 |
commit | 567551bc12945c25b49c65579ceb545668dbb7eb (patch) | |
tree | 039596f5b6ea445ff3f90c14d698ca66ffbac303 /AK | |
parent | 5b1991102534ecce1784da6282b6ceced4687e3e (diff) | |
download | serenity-567551bc12945c25b49c65579ceb545668dbb7eb.zip |
AK: Add some missing includes in SinglyLinkedList.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/SinglyLinkedList.h | 3 |
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 { |