Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CAMP
campvis-public
Commits
7434135c
Commit
7434135c
authored
Dec 20, 2013
by
Hossain Mahmud
Browse files
map iterator fix
parent
ce99305d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/io/processors/genericimagereader.cpp
View file @
7434135c
...
...
@@ -66,7 +66,7 @@ namespace campvis {
for
(
std
::
map
<
AbstractImageReader
*
,
MetaProperty
*>::
iterator
it
=
this
->
_readers
.
begin
();
it
!=
this
->
_readers
.
end
();
it
++
)
{
if
(
nullptr
!=
it
->
first
)
delete
it
->
first
;
if
(
nullptr
!=
it
->
second
)
delete
it
->
second
;
this
->
_readers
.
erase
(
it
);
//
this->_readers.erase(it);
}
}
void
GenericImageReader
::
process
(
DataContainer
&
data
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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