diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-16 13:12:13 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-16 13:12:13 +0100 |
commit | 15657f09168622d75a9729feb036f791d74840e2 (patch) | |
tree | e5ad30db47acf06dd81c6def02fe21fa77c234a8 /Kernel | |
parent | eb610b309e7f7cef88debaea30ac1d42689dc0a7 (diff) | |
download | serenity-15657f09168622d75a9729feb036f791d74840e2.zip |
AK: Remove Buffer<T> since it was only ever instantiated with T=byte.
Instead make a specialized AK::ByteBufferImpl class for the backing store
of AK::ByteBuffer. This reduces template bloat.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Ext2FileSystem.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Ext2FileSystem.h b/Kernel/Ext2FileSystem.h index cbd280a29e..48af843b5d 100644 --- a/Kernel/Ext2FileSystem.h +++ b/Kernel/Ext2FileSystem.h @@ -2,7 +2,6 @@ #include "DiskBackedFileSystem.h" #include "UnixTypes.h" -#include <AK/Buffer.h> #include <AK/OwnPtr.h> #include "ext2_fs.h" |