diff options
Diffstat (limited to 'AK/SinglyLinkedList.h')
-rw-r--r-- | AK/SinglyLinkedList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/SinglyLinkedList.h b/AK/SinglyLinkedList.h index 68f87e3276..ab552c4664 100644 --- a/AK/SinglyLinkedList.h +++ b/AK/SinglyLinkedList.h @@ -17,7 +17,7 @@ public: SinglyLinkedList() { } ~SinglyLinkedList() { clear(); } - bool isEmpty() const { return !head(); } + bool is_empty() const { return !head(); } void clear() { |