1
0
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:
Alexander Alekhin
2019-11-11 17:20:07 +03:00
parent ba58bba4e8
commit 7ecdcf6ca6
9 changed files with 38 additions and 3 deletions
+9
View File
@@ -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 )