Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
ce46cc98
Commit
ce46cc98
authored
Nov 14, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13153 from savuor:fix/filenodeit_member_ptr
parents
39f327ac
d6b27395
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
persistence.hpp
modules/core/include/opencv2/core/persistence.hpp
+0
-2
persistence.cpp
modules/core/src/persistence.cpp
+0
-5
No files found.
modules/core/include/opencv2/core/persistence.hpp
View file @
ce46cc98
...
...
@@ -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
++
();
...
...
modules/core/src/persistence.cpp
View file @
ce46cc98
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment