mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 23:33:05 +04:00
Revert CV_TRY/CV_CATCH macros
This reverts commit 7349b8f5ce (partially).
This commit is contained in:
@@ -99,7 +99,7 @@ void RBaseStream::readBlock()
|
||||
{
|
||||
if( m_block_pos == 0 && m_current < m_end )
|
||||
return;
|
||||
CV_THROW (RBS_THROW_EOS);
|
||||
throw RBS_THROW_EOS;
|
||||
}
|
||||
|
||||
fseek( m_file, m_block_pos, SEEK_SET );
|
||||
@@ -107,7 +107,7 @@ void RBaseStream::readBlock()
|
||||
m_end = m_start + readed;
|
||||
|
||||
if( readed == 0 || m_current >= m_end )
|
||||
CV_THROW (RBS_THROW_EOS);
|
||||
throw RBS_THROW_EOS;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user