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

Kernel: Make KBufferBuilder use KBuffer instead of KBufferImpl

This was the last remaining direct client of the KBufferImpl class
outside of KBuffer.
This commit is contained in:
Andreas Kling 2021-09-07 15:44:45 +02:00
parent b300f9aa2f
commit 2c262ddf0f
2 changed files with 10 additions and 4 deletions

View file

@ -56,7 +56,7 @@ private:
return m_buffer->data() + m_size;
}
RefPtr<KBufferImpl> m_buffer;
OwnPtr<KBuffer> m_buffer;
size_t m_size { 0 };
};