Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenVolumeMesh
OpenVolumeMesh
Commits
88a69672
Commit
88a69672
authored
Aug 20, 2019
by
Martin Heistermann
Browse files
signedness fix
parent
33ac8b63
Pipeline
#11840
passed with stage
in 3 minutes and 55 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/OpenVolumeMesh/Core/OpenVolumeMeshProperty.hh
View file @
88a69672
...
...
@@ -109,7 +109,7 @@ public:
data_
[
_dst_idx
]
=
data_
[
_src_idx
];
}
void
delete_element
(
size_t
_idx
)
override
{
data_
.
erase
(
data_
.
begin
()
+
static_cast
<
ssize_t
>
(
_idx
));
data_
.
erase
(
data_
.
begin
()
+
static_cast
<
long
>
(
_idx
));
}
public:
...
...
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