summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-16 13:12:13 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-16 13:12:13 +0100
commit15657f09168622d75a9729feb036f791d74840e2 (patch)
treee5ad30db47acf06dd81c6def02fe21fa77c234a8 /Kernel
parenteb610b309e7f7cef88debaea30ac1d42689dc0a7 (diff)
downloadserenity-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.h1
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"