fix WaitObjectContainer constructor in release build
parent
6ed6d9ad80
commit
70fc53ece5
|
|
@ -25,7 +25,10 @@ unsigned int WaitObjectContainer::MaxWaitObjects()
|
||||||
}
|
}
|
||||||
|
|
||||||
WaitObjectContainer::WaitObjectContainer()
|
WaitObjectContainer::WaitObjectContainer()
|
||||||
: m_sameResultCount(0), m_timer(Timer::MILLISECONDS)
|
#ifndef NDEBUG
|
||||||
|
: m_sameResultCount(0)
|
||||||
|
, m_timer(Timer::MILLISECONDS)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
Clear();
|
Clear();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue