Explorar el Código

AK: Add some missing includes in SinglyLinkedList.

Andreas Kling hace 6 años
padre
commit
567551bc12
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      AK/SinglyLinkedList.h

+ 2 - 1
AK/SinglyLinkedList.h

@@ -1,6 +1,7 @@
 #pragma once
 
-#include "StdLibExtras.h"
+#include <AK/Assertions.h>
+#include <AK/StdLibExtras.h>
 
 namespace AK {