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 / Register
Toggle navigation
Open sidebar
third-party
moab
Commits
18862019
Commit
18862019
authored
Oct 11, 2016
by
vijaysm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix several additional warnings in sources and tests
parent
4e054031
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
itaps/imesh/MOAB_iMeshP_unit_tests.cpp
itaps/imesh/MOAB_iMeshP_unit_tests.cpp
+1
-1
itaps/imesh/iMesh_MOAB.cpp
itaps/imesh/iMesh_MOAB.cpp
+3
-3
itaps/irel/test_entset.cpp
itaps/irel/test_entset.cpp
+1
-1
src/MetisPartitioner.cpp
src/MetisPartitioner.cpp
+1
-1
No files found.
itaps/imesh/MOAB_iMeshP_unit_tests.cpp
View file @
18862019
...
...
@@ -2354,7 +2354,7 @@ int test_entity_copies( iMesh_Instance imesh, iMeshP_PartitionHandle prtn, const
// add all vertices to local_data
for
(
size_t
j
=
0
;
j
<
verts
.
size
();
++
j
)
{
int
tag
;
int
tag
=
0
;
ierr
=
vertex_tag
(
imesh
,
verts
[
j
],
tag
);
if
(
ierr
)
break
;
...
...
itaps/imesh/iMesh_MOAB.cpp
View file @
18862019
...
...
@@ -2406,7 +2406,7 @@ extern "C" {
EntityHandle
set1
=
ENTITY_HANDLE
(
entity_set_1
),
set2
=
ENTITY_HANDLE
(
entity_set_2
);
int
isList1
,
isList2
;
int
isList1
=
0
,
isList2
=
0
;
iMesh_isList
(
instance
,
entity_set_1
,
&
isList1
,
err
);
if
(
*
err
!=
iBase_SUCCESS
)
return
;
iMesh_isList
(
instance
,
entity_set_2
,
&
isList2
,
err
);
...
...
@@ -2455,7 +2455,7 @@ extern "C" {
EntityHandle
set1
=
ENTITY_HANDLE
(
entity_set_1
),
set2
=
ENTITY_HANDLE
(
entity_set_2
);
int
isList1
,
isList2
;
int
isList1
=
0
,
isList2
=
0
;
iMesh_isList
(
instance
,
entity_set_1
,
&
isList1
,
err
);
if
(
*
err
!=
iBase_SUCCESS
)
return
;
iMesh_isList
(
instance
,
entity_set_2
,
&
isList2
,
err
);
...
...
@@ -2561,7 +2561,7 @@ extern "C" {
EntityHandle
set1
=
ENTITY_HANDLE
(
entity_set_1
),
set2
=
ENTITY_HANDLE
(
entity_set_2
);
int
isList1
,
isList2
;
int
isList1
=
0
,
isList2
=
0
;
iMesh_isList
(
instance
,
entity_set_1
,
&
isList1
,
err
);
if
(
*
err
!=
iBase_SUCCESS
)
return
;
iMesh_isList
(
instance
,
entity_set_2
,
&
isList2
,
err
);
...
...
itaps/irel/test_entset.cpp
View file @
18862019
...
...
@@ -34,7 +34,7 @@ typedef void* iRel_EntityHandle;
*/
void
handle_error_code
(
const
int
result
,
int
*
number_failed
,
int
*
number_not_implemented
,
int
*
/*
number_not_implemented
*/
,
int
*
number_successful
)
{
if
(
result
)
{
...
...
src/MetisPartitioner.cpp
View file @
18862019
...
...
@@ -38,7 +38,7 @@ const bool debug = false;
MetisPartitioner
::
MetisPartitioner
(
Interface
*
impl
,
const
bool
use_coords
)
:
PartitionerBase
<
idx_t
>
(
impl
,
use_coords
)
,
:
PartitionerBase
<
idx_t
>
(
impl
,
use_coords
)
{
}
...
...
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