mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:17:35 +00:00
AK: Remove now unused InlineLinkedList class
All usages of AK::InlineLinkedList have been converted to AK::IntrusiveList. So it's time to retire our old friend. Note: The empty white space change in AK/CMakeLists.txt is to force CMake to re-glob the header files in the AK directory so incremental build will work when folks git pull this change locally. Otherwise they'll get errors, because CMake will attempt to install a file which no longer exists.
This commit is contained in:
parent
f0fbaa00a4
commit
31081e8ebf
3 changed files with 1 additions and 321 deletions
|
@ -63,9 +63,6 @@ class SinglyLinkedList;
|
|||
template<typename T>
|
||||
class DoublyLinkedList;
|
||||
|
||||
template<typename T>
|
||||
class InlineLinkedList;
|
||||
|
||||
template<typename T, size_t capacity>
|
||||
class CircularQueue;
|
||||
|
||||
|
@ -139,7 +136,6 @@ using AK::FlyString;
|
|||
using AK::Function;
|
||||
using AK::HashMap;
|
||||
using AK::HashTable;
|
||||
using AK::InlineLinkedList;
|
||||
using AK::InputBitStream;
|
||||
using AK::InputMemoryStream;
|
||||
using AK::InputStream;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue