1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:47:35 +00:00

LibCore: Make Core::AnonymousBuffer moveable

This commit is contained in:
Andreas Kling 2021-07-07 17:27:33 +02:00
parent e0986c2766
commit 4cb0bbef9d
2 changed files with 0 additions and 5 deletions

View file

@ -94,8 +94,4 @@ AnonymousBufferImpl::AnonymousBufferImpl(int fd, size_t size, void* data)
{ {
} }
AnonymousBuffer::~AnonymousBuffer()
{
}
} }

View file

@ -38,7 +38,6 @@ public:
static AnonymousBuffer create_from_anon_fd(int fd, size_t); static AnonymousBuffer create_from_anon_fd(int fd, size_t);
AnonymousBuffer() { } AnonymousBuffer() { }
~AnonymousBuffer();
bool is_valid() const { return m_impl; } bool is_valid() const { return m_impl; }