mirror of
https://github.com/opencv/opencv.git
synced 2025-06-06 00:43:52 +08:00
removed FileNodeIterator::operator->()
This commit is contained in:
parent
8b7f805642
commit
d6b2739525
@ -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 ++ ();
|
||||
|
@ -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 )
|
||||
|
Loading…
Reference in New Issue
Block a user