Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
third-party
moab
Commits
51bcc028
Commit
51bcc028
authored
Dec 19, 2016
by
vijaysm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing some formatting warnings with GNU 6.2
parent
4ceb7d80
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
test/MBTest.cpp
test/MBTest.cpp
+1
-1
tools/size.cpp
tools/size.cpp
+1
-1
No files found.
test/MBTest.cpp
View file @
51bcc028
...
...
@@ -2358,7 +2358,7 @@ ErrorCode mb_mesh_set_flag_test()
unsigned
int
flags
;
rval
=
mb
->
get_meshset_options
(
set
,
flags
);
CHKERR
(
rval
);
if
(
!
MESHSET_SET
&
flags
||
MESHSET_TRACK_OWNER
&
flags
||
MESHSET_ORDERED
&
flags
){
if
(
!
(
MESHSET_SET
&
flags
)
||
(
MESHSET_TRACK_OWNER
&
flags
)
||
(
MESHSET_ORDERED
&
flags
)
)
{
std
::
cerr
<<
"set should be MESHSET_SET only, flags="
<<
flags
<<
std
::
endl
;
return
MB_FAILURE
;
}
...
...
tools/size.cpp
View file @
51bcc028
...
...
@@ -267,7 +267,7 @@ static void print_tag_counts( const std::vector<TagCounts>& counts )
for
(
EntityType
t
=
MBVERTEX
;
t
!=
MBMAXTYPE
;
++
t
)
if
(
widths
[
t
])
printf
(
" %s"
,
dashes
(
widths
[
t
])
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
// print data
for
(
size_t
i
=
0
;
i
<
counts
.
size
();
++
i
)
{
...
...
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