mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Build for embedded systems
This commit is contained in:
@@ -98,7 +98,7 @@ void RBaseStream::readBlock()
|
||||
{
|
||||
if( m_block_pos == 0 && m_current < m_end )
|
||||
return;
|
||||
throw RBS_THROW_EOS;
|
||||
CV_THROW (RBS_THROW_EOS);
|
||||
}
|
||||
|
||||
fseek( m_file, m_block_pos, SEEK_SET );
|
||||
@@ -107,7 +107,7 @@ void RBaseStream::readBlock()
|
||||
m_current = m_start;
|
||||
|
||||
if( readed == 0 || m_current >= m_end )
|
||||
throw RBS_THROW_EOS;
|
||||
CV_THROW (RBS_THROW_EOS);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user