1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

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.
This commit is contained in:
Andreas Kling 2019-03-16 13:12:13 +01:00
parent eb610b309e
commit 15657f0916
3 changed files with 130 additions and 153 deletions

View file

@ -2,7 +2,6 @@
#include "DiskBackedFileSystem.h"
#include "UnixTypes.h"
#include <AK/Buffer.h>
#include <AK/OwnPtr.h>
#include "ext2_fs.h"