mirror of
https://github.com/opencv/opencv.git
synced 2026-07-28 23:03:03 +04:00
build: GCC9 compilation
This commit is contained in:
@@ -328,6 +328,15 @@ FileNodeIterator::FileNodeIterator(const FileNodeIterator& it)
|
||||
remaining = it.remaining;
|
||||
}
|
||||
|
||||
FileNodeIterator& FileNodeIterator::operator=(const FileNodeIterator& it)
|
||||
{
|
||||
fs = it.fs;
|
||||
container = it.container;
|
||||
reader = it.reader;
|
||||
remaining = it.remaining;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FileNodeIterator& FileNodeIterator::operator ++()
|
||||
{
|
||||
if( remaining > 0 )
|
||||
|
||||
Reference in New Issue
Block a user