mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-03 23:05:59 +02:00
Added missing ()'s for allocations
This commit is contained in:
parent
2320e2eb8c
commit
40fe76d903
10 changed files with 21 additions and 21 deletions
|
@ -45,7 +45,7 @@ namespace BeefPerf
|
|||
public Socket mListenSocket ~ delete _;
|
||||
public Thread mSocketThread ~ delete _;
|
||||
public List<BpClient> mClients = new List<BpClient>() ~ delete _;
|
||||
public List<BpSession> mSessions = new List<BpSession> ~ DeleteContainerAndItems!(_);
|
||||
public List<BpSession> mSessions = new List<BpSession>() ~ DeleteContainerAndItems!(_);
|
||||
public Monitor mClientMonitor = new Monitor() ~ delete _;
|
||||
public WaitEvent mShutdownEvent = new WaitEvent() ~ delete _;
|
||||
public BpSession mCurSession;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue