Fix minor compil warnings

This commit is contained in:
jean-pierre charras 2022-11-29 09:43:00 +01:00
parent 436f95e02e
commit f3aff63726
2 changed files with 3 additions and 3 deletions

View File

@ -887,7 +887,7 @@ bool IbisParser::getNextLine()
m_lineOffset = m_bufferIndex;
if( m_bufferIndex >= m_buffer.size() )
if( m_bufferIndex >= (int)m_buffer.size() )
return false;
char c = m_buffer[m_bufferIndex++];

View File

@ -87,8 +87,8 @@ IBIS_CORNER ReverseLogic( IBIS_CORNER aIn )
KIBIS::KIBIS( std::string aFileName, IBIS_REPORTER* aReporter ) :
KIBIS_ANY( this ),
m_file( this ),
m_reporter( aReporter )
m_reporter( aReporter ),
m_file( this )
{
IbisParser parser( m_reporter );
bool status = true;