Maybe make Coverity happy

This commit is contained in:
Jon Evans 2021-03-21 09:19:18 -04:00
parent cdb352bb24
commit 9b0d7b7d37
1 changed files with 3 additions and 3 deletions

View File

@ -34,13 +34,13 @@ SYMBOL_ASYNC_LOADER::SYMBOL_ASYNC_LOADER( const std::vector<wxString>& aNickname
m_table( aTable ),
m_onlyPowerSymbols( aOnlyPowerSymbols ),
m_output( aOutput ),
m_reporter( aReporter )
m_reporter( aReporter ),
m_nextLibrary( 0 ),
m_canceled( false )
{
wxASSERT( m_table );
m_threadCount = std::max<size_t>( 1, std::thread::hardware_concurrency() - 1 );
m_canceled.store( false );
m_nextLibrary.store( 0 );
m_returns.resize( m_threadCount );
}