removed FileNodeIterator::operator->()

This commit is contained in:
Rostislav Vasilikhin 2018-11-13 20:18:53 +03:00
parent 8b7f805642
commit d6b2739525
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 )