1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

Merge pull request #13153 from savuor:fix/filenodeit_member_ptr

This commit is contained in:
Alexander Alekhin
2018-11-14 14:22:58 +00:00
2 changed files with 0 additions and 7 deletions
@@ -642,8 +642,6 @@ public:
//! returns the currently observed element
FileNode operator *() const;
//! accesses the currently observed element methods
FileNode operator ->() const;
//! moves iterator to the next node
FileNodeIterator& operator ++ ();
-5
View File
@@ -2388,11 +2388,6 @@ FileNode FileNodeIterator::operator *() const
return FileNode(idx < nodeNElems ? fs : 0, blockIdx, ofs);
}
FileNode FileNodeIterator::operator ->() const
{
return FileNode(idx < nodeNElems ? fs : 0, blockIdx, ofs);
}
FileNodeIterator& FileNodeIterator::operator ++ ()
{
if( idx == nodeNElems || !fs )