From 255b12ea9770dce53e359a2bcf1ae92d0ce8e57d Mon Sep 17 00:00:00 2001 From: Stephan Unverwerth Date: Thu, 22 Dec 2022 13:33:06 +0100 Subject: [PATCH] LibVirtGPU: Remove unnecessary BufferBuilder constructor deletion Since there is a non-default constructor this line is not needed. --- Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp b/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp index 536000efec..cafde45cf4 100644 --- a/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp +++ b/Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp @@ -23,7 +23,6 @@ static u32 encode_command(u32 length, u32 mid, Protocol::VirGLCommand command) class CommandBuilder { public: - CommandBuilder() = delete; CommandBuilder(Vector& buffer, Protocol::VirGLCommand command, u32 mid) : m_buffer(buffer) , m_start_offset(buffer.size())