Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
e36e508f
Commit
e36e508f
authored
Nov 27, 2019
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
call const version of end to make cppcheck happy
parent
2eebdd62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/OpenMesh/Core/Mesh/ArrayKernel.hh
src/OpenMesh/Core/Mesh/ArrayKernel.hh
+1
-1
No files found.
src/OpenMesh/Core/Mesh/ArrayKernel.hh
View file @
e36e508f
...
...
@@ -766,7 +766,7 @@ public:
//! Complexity: O(1)
inline
void
erase
(
iterator
_it
)
{
assert
(
_it
!=
end
()
&&
is_in
(
*
_it
));
assert
(
_it
!=
const_cast
<
const
ExtStatusSetT
*>
(
this
)
->
end
()
&&
is_in
(
*
_it
));
Base
::
erase
(
*
_it
);
*
_it
=
handles_
.
back
();
_it
.
pop_back
();
...
...
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