mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Revert "Net tests were failing to compile because 'static members' weren't actually being declared as members..."
This reverts commit 32f726dcc6.
This commit is contained in:
parent
0e30426def
commit
710a2a9b7b
3 changed files with 13 additions and 18 deletions
|
|
@ -491,10 +491,11 @@ template<class T> T ReservedSocketList<T>::resolve(NetSocket socketToResolve)
|
|||
EntryType &entry = mSocketList[socketToResolve.getHandle()];
|
||||
return entry.used ? entry.value : -1;
|
||||
}
|
||||
ConnectionNotifyEvent* Net::smConnectionNotify = NULL;
|
||||
ConnectionAcceptedEvent* Net::smConnectionAccept = NULL;
|
||||
ConnectionReceiveEvent* Net::smConnectionReceive = NULL;
|
||||
PacketReceiveEvent* Net::smPacketReceive = NULL;
|
||||
|
||||
static ConnectionNotifyEvent* smConnectionNotify = NULL;
|
||||
static ConnectionAcceptedEvent* smConnectionAccept = NULL;
|
||||
static ConnectionReceiveEvent* smConnectionReceive = NULL;
|
||||
static PacketReceiveEvent* smPacketReceive = NULL;
|
||||
|
||||
ConnectionNotifyEvent& Net::getConnectionNotifyEvent()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue