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

LibVirtGPU: Remove unnecessary BufferBuilder constructor deletion

Since there is a non-default constructor this line is not needed.
This commit is contained in:
Stephan Unverwerth 2022-12-22 13:33:06 +01:00 committed by Andreas Kling
parent a34998fb76
commit 255b12ea97

View file

@ -23,7 +23,6 @@ static u32 encode_command(u32 length, u32 mid, Protocol::VirGLCommand command)
class CommandBuilder {
public:
CommandBuilder() = delete;
CommandBuilder(Vector<u32>& buffer, Protocol::VirGLCommand command, u32 mid)
: m_buffer(buffer)
, m_start_offset(buffer.size())