Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenMesh
OpenMesh
Commits
8396dcea
Commit
8396dcea
authored
Apr 05, 2018
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler warnings in unittests
parent
a9998fac
Pipeline
#6781
passed with stage
in 43 minutes and 9 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/Unittests/unittests_split_edge_copy.cc
src/Unittests/unittests_split_edge_copy.cc
+2
-2
No files found.
src/Unittests/unittests_split_edge_copy.cc
View file @
8396dcea
...
...
@@ -99,7 +99,7 @@ TEST_F(OpenMeshSplitEdgeCopyTriangleMesh, SplitEdgeCopyTriangleMesh) {
EXPECT_EQ
(
999
,
mesh_
.
property
(
eprop_int
,
eh0
))
<<
"Different Property value"
;
EXPECT_TRUE
(
mesh_
.
status
(
eh0
).
tagged
())
<<
"Different internal property value"
;
EXPECT_EQ
(
mesh_
.
valence
(
fh
),
3
)
<<
"Face of TriMesh has valence other than 3"
;
EXPECT_EQ
(
3u
,
mesh_
.
valence
(
fh
)
)
<<
"Face of TriMesh has valence other than 3"
;
}
/* splits an edge that has a property in a poly mesh with split_edge_copy
...
...
@@ -219,7 +219,7 @@ TEST_F(OpenMeshSplitEdgeCopyTriangleMesh, SplitEdgeCopyFacePropertiesTriangleMes
for
(
auto
fh
:
mesh_
.
faces
())
{
EXPECT_EQ
(
mesh_
.
valence
(
fh
),
3
);
EXPECT_EQ
(
3u
,
mesh_
.
valence
(
fh
)
);
}
// Check setup
...
...
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