From 59484fc3cf6851db54446b30e01edf32db2600a3 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 8 Jul 2015 14:33:08 -0700 Subject: [PATCH] rename setType implementation in Packet --- libraries/networking/src/Packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/networking/src/Packet.cpp b/libraries/networking/src/Packet.cpp index 23675dd167..a7e08db1b3 100644 --- a/libraries/networking/src/Packet.cpp +++ b/libraries/networking/src/Packet.cpp @@ -102,7 +102,7 @@ Packet& Packet::operator=(Packet&& other) { return *this; } -void Packet::setPacketType(PacketType::Value type) { +void Packet::setType(PacketType::Value type) { auto currentHeaderSize = totalHeadersSize(); _type = type; writePacketTypeAndVersion(_type);