Browse Source

packet.h: Fix `-Wunused-variable` (#3379)

pull/3381/head
Gleb Mazovetskiy 5 years ago committed by GitHub
parent
commit
19cbe65ed8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      Source/dvlnet/packet.h

1
Source/dvlnet/packet.h

@ -354,7 +354,6 @@ inline std::unique_ptr<packet> packet_factory::make_packet(buffer_t buf)
else
ret->Decrypt(std::move(buf));
#endif
size_t size = ret->Data().size();
ret->process_data();
return ret;
}

Loading…
Cancel
Save