Merge pull request #2880 from GravityJack:SparseMatIterator-build-fix

This commit is contained in:
Roman Donchenko 2014-06-25 16:32:17 +04:00 committed by OpenCV Buildbot
commit 436342d5f4

View File

@ -2565,7 +2565,7 @@ SparseMatConstIterator_<_Tp>::operator ++()
template<typename _Tp> inline SparseMatConstIterator_<_Tp> template<typename _Tp> inline SparseMatConstIterator_<_Tp>
SparseMatConstIterator_<_Tp>::operator ++(int) SparseMatConstIterator_<_Tp>::operator ++(int)
{ {
SparseMatConstIterator it = *this; SparseMatConstIterator_<_Tp> it = *this;
SparseMatConstIterator::operator ++(); SparseMatConstIterator::operator ++();
return it; return it;
} }
@ -2609,7 +2609,7 @@ SparseMatIterator_<_Tp>::operator ++()
template<typename _Tp> inline SparseMatIterator_<_Tp> template<typename _Tp> inline SparseMatIterator_<_Tp>
SparseMatIterator_<_Tp>::operator ++(int) SparseMatIterator_<_Tp>::operator ++(int)
{ {
SparseMatIterator it = *this; SparseMatIterator_<_Tp> it = *this;
SparseMatConstIterator::operator ++(); SparseMatConstIterator::operator ++();
return it; return it;
} }