diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-21 15:29:31 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-21 15:30:03 +0200 |
commit | 77b9fa89dd36fcd56d956667a956ef7f2ee8f963 (patch) | |
tree | af2cf88f4de319ebc9b0a9a09ecf379b2311e71e /AK/ByteBuffer.h | |
parent | ef1bfcb9d881ba49cd0e2135375cf4cbb9e85a92 (diff) | |
download | serenity-77b9fa89dd36fcd56d956667a956ef7f2ee8f963.zip |
AK: Rename Retainable => RefCounted.
(And various related renames that go along with it.)
Diffstat (limited to 'AK/ByteBuffer.h')
-rw-r--r-- | AK/ByteBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/ByteBuffer.h b/AK/ByteBuffer.h index 1f866ed5e5..ffd39b834a 100644 --- a/AK/ByteBuffer.h +++ b/AK/ByteBuffer.h @@ -8,7 +8,7 @@ namespace AK { -class ByteBufferImpl : public Retainable<ByteBufferImpl> { +class ByteBufferImpl : public RefCounted<ByteBufferImpl> { public: static Retained<ByteBufferImpl> create_uninitialized(int size); static Retained<ByteBufferImpl> create_zeroed(int); |