Fixed some random Worder warnings

This commit is contained in:
Raul Ferriz 2015-07-03 15:52:38 +02:00
parent 2ad409a4f4
commit 5ef130d581
12 changed files with 34 additions and 32 deletions

View file

@ -156,12 +156,13 @@ class AsyncPacketQueue
Consumer consumer,
TickType totalTicks = 0,
bool dropPackets = false )
: mTotalTicks( totalTicks ),
: mDropPackets( dropPackets ),
mTotalTicks( totalTicks ),
mTotalQueuedTicks( 0 ),
mPacketQueue( maxQueuedPackets ),
mTimeSource( timeSource ),
mConsumer( consumer ),
mDropPackets( dropPackets )
mConsumer( consumer )
{
#ifdef TORQUE_DEBUG
mTotalQueuedPackets = 0;