mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 09:50:06 +02:00
Remove unnecessary ptr get() in PacketList
This commit is contained in:
parent
5849befb3d
commit
d9eddbe738
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ PacketList::PacketList(PacketList&& other) :
|
||||||
}
|
}
|
||||||
|
|
||||||
HifiSockAddr PacketList::getSenderSockAddr() const {
|
HifiSockAddr PacketList::getSenderSockAddr() const {
|
||||||
return _packets.size() > 0 ? _packets.front().get()->getSenderSockAddr() : HifiSockAddr();
|
return _packets.size() > 0 ? _packets.front()->getSenderSockAddr() : HifiSockAddr();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PacketList::startSegment() {
|
void PacketList::startSegment() {
|
||||||
|
|
Loading…
Reference in a new issue