diff options
Diffstat (limited to 'AK/DoublyLinkedList.h')
-rw-r--r-- | AK/DoublyLinkedList.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/DoublyLinkedList.h b/AK/DoublyLinkedList.h index fe65bb6264..a5a72562d6 100644 --- a/AK/DoublyLinkedList.h +++ b/AK/DoublyLinkedList.h @@ -1,6 +1,6 @@ #pragma once -#include <utility> +#include "StdLib.h" namespace AK { @@ -38,7 +38,7 @@ public: void append(T&& value) { - auto* node = new Node(std::move(value)); + auto* node = new Node(move(value)); if (!m_head) { ASSERT(!m_tail); m_head = node; |