Browse Source

LibVirtGPU: Remove unnecessary BufferBuilder constructor deletion

Since there is a non-default constructor this line is not needed.
Stephan Unverwerth 2 years ago
parent
commit
255b12ea97
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Userland/Libraries/LibVirtGPU/CommandBufferBuilder.cpp

+ 0 - 1
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())