summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibVirtGPU
diff options
context:
space:
mode:
authorStephan Unverwerth <s.unverwerth@serenityos.org>2022-12-22 13:33:06 +0100
committerAndreas Kling <kling@serenityos.org>2022-12-26 09:39:20 +0100
commit255b12ea9770dce53e359a2bcf1ae92d0ce8e57d (patch)
tree64ca5385858ef60d2dca8975bf1486fa922b5474 /Userland/Libraries/LibVirtGPU
parenta34998fb765c61adf719e4787ce42f9456956af2 (diff)
downloadserenity-255b12ea9770dce53e359a2bcf1ae92d0ce8e57d.zip
LibVirtGPU: Remove unnecessary BufferBuilder constructor deletion
Since there is a non-default constructor this line is not needed.
Diffstat (limited to 'Userland/Libraries/LibVirtGPU')
-rw-r--r--Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp1
1 files changed, 0 insertions, 1 deletions
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<u32>& buffer, Protocol::VirGLCommand command, u32 mid)
: m_buffer(buffer)
, m_start_offset(buffer.size())