emove impl of deleted methods

This commit is contained in:
Atlante45 2015-07-16 16:09:47 -07:00
parent d1c66751c4
commit 9625e6b33a

View file

@ -129,11 +129,3 @@ QString nameForPacketType(PacketType::Value packetType) {
int numBytesForArithmeticCodedPacketType(PacketType::Value packetType) {
return (int) ceilf((float) packetType / 255);
}
PacketType::Value packetTypeForPacket(const QByteArray& packet) {
return (PacketType::Value) arithmeticCodingValueFromBuffer(packet.data());
}
PacketType::Value packetTypeForPacket(const char* packet) {
return (PacketType::Value) arithmeticCodingValueFromBuffer(packet);
}