mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
Fix friend declaration in Socket from udt::UDTTest to UDTTest
This commit is contained in:
parent
e36c2b8567
commit
791652557e
1 changed files with 3 additions and 2 deletions
|
@ -27,6 +27,8 @@
|
|||
|
||||
#define UDT_CONNECTION_DEBUG
|
||||
|
||||
class UDTTest;
|
||||
|
||||
namespace udt {
|
||||
|
||||
class BasePacket;
|
||||
|
@ -34,7 +36,6 @@ class ControlSender;
|
|||
class Packet;
|
||||
class PacketList;
|
||||
class SequenceNumber;
|
||||
class UDTTest;
|
||||
|
||||
using PacketFilterOperator = std::function<bool(const Packet&)>;
|
||||
|
||||
|
@ -105,7 +106,7 @@ private:
|
|||
|
||||
std::unique_ptr<CongestionControlVirtualFactory> _ccFactory { new CongestionControlFactory<DefaultCC>() };
|
||||
|
||||
friend class UDTTest;
|
||||
friend UDTTest;
|
||||
};
|
||||
|
||||
} // namespace udt
|
||||
|
|
Loading…
Reference in a new issue