mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-06 04:46:24 +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 {
|
||||
return _packets.size() > 0 ? _packets.front().get()->getSenderSockAddr() : HifiSockAddr();
|
||||
return _packets.size() > 0 ? _packets.front()->getSenderSockAddr() : HifiSockAddr();
|
||||
}
|
||||
|
||||
void PacketList::startSegment() {
|
||||
|
|
Loading…
Reference in a new issue