Fix minor compil warnings
This commit is contained in:
parent
436f95e02e
commit
f3aff63726
|
@ -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++];
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue