Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OpenMesh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenMesh
OpenMesh
Commits
0aced4c8
There was a problem fetching the pipeline summary.
Commit
0aced4c8
authored
9 years ago
by
Jan Möbius
Browse files
Options
Downloads
Patches
Plain Diff
Fixed signed unsigned warning
parent
a8af8890
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!42
Compiler error fix
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/OpenMesh/Core/Mesh/PolyConnectivity.cc
+2
-1
2 additions, 1 deletion
src/OpenMesh/Core/Mesh/PolyConnectivity.cc
with
2 additions
and
1 deletion
src/OpenMesh/Core/Mesh/PolyConnectivity.cc
+
2
−
1
View file @
0aced4c8
...
...
@@ -135,7 +135,8 @@ PolyConnectivity::add_face(const VertexHandle* _vertex_handles, size_t _vhs_size
edgeData_
.
resize
(
n
);
next_cache_
.
resize
(
6
*
n
);
}
int
next_cache_count
=
0
;
size_t
next_cache_count
=
0
;
// don't allow degenerated faces
assert
(
n
>
2
);
...
...
This diff is collapsed.
Click to expand it.
Jan Möbius
@moebius
mentioned in commit
4fed1cd9
·
9 years ago
mentioned in commit
4fed1cd9
mentioned in commit 4fed1cd918dff6ed8b5bbb45f4b2f19ff03a2d47
Toggle commit list
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment