mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
removed FileNodeIterator::operator->()
This commit is contained in:
parent
8b7f805642
commit
d6b2739525
@ -642,8 +642,6 @@ public:
|
|||||||
|
|
||||||
//! returns the currently observed element
|
//! returns the currently observed element
|
||||||
FileNode operator *() const;
|
FileNode operator *() const;
|
||||||
//! accesses the currently observed element methods
|
|
||||||
FileNode operator ->() const;
|
|
||||||
|
|
||||||
//! moves iterator to the next node
|
//! moves iterator to the next node
|
||||||
FileNodeIterator& operator ++ ();
|
FileNodeIterator& operator ++ ();
|
||||||
|
@ -2388,11 +2388,6 @@ FileNode FileNodeIterator::operator *() const
|
|||||||
return FileNode(idx < nodeNElems ? fs : 0, blockIdx, ofs);
|
return FileNode(idx < nodeNElems ? fs : 0, blockIdx, ofs);
|
||||||
}
|
}
|
||||||
|
|
||||||
FileNode FileNodeIterator::operator ->() const
|
|
||||||
{
|
|
||||||
return FileNode(idx < nodeNElems ? fs : 0, blockIdx, ofs);
|
|
||||||
}
|
|
||||||
|
|
||||||
FileNodeIterator& FileNodeIterator::operator ++ ()
|
FileNodeIterator& FileNodeIterator::operator ++ ()
|
||||||
{
|
{
|
||||||
if( idx == nodeNElems || !fs )
|
if( idx == nodeNElems || !fs )
|
||||||
|
Loading…
Reference in New Issue
Block a user