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
commit ce46cc9852
2 changed files with 0 additions and 7 deletions

View File

@ -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 ++ ();

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 )